General php session

I recently ran into a problem and I tried to solve it without any luck. I am trying to split a php session on multiple php / apache servers on all servers using GlusterFS, however, although the session is available on all servers, the session does not receive the transfer as soon as I am on another server. I am logging out.

+3
source share
1 answer

As a rule, when people want to use load balancing, and they want one user to balance on several servers, they store sessions:

  • either using a database accessible from each web server
  • - memcached - ( , , , ).

GlusterFS ( ), , memcached, .

?

+7

Source: https://habr.com/ru/post/1718745/


All Articles