PHP => Alternative to session data?
Posted
by
Armz
on Stack Overflow
See other posts from Stack Overflow
or by Armz
Published on 2012-10-11T21:34:03Z
Indexed on
2012/10/11
21:36 UTC
Read the original article
Hit count: 177
i have a Web Application where Cookies and Session are both important.
Since the Web Application is load balanced on different server, i am looking for suggestions to Alternative Store for the Session data that all server will be able to access.
Some sessions could live up to severals days.
The solutions that come to my mind: - Native PHP Sessions (this is the one i want to stop using) - MySQL Database - Serialize and write to a file (i want to avoid this, for performances) - Memcache (however it could become very big or older data getting knocked out)
Thanks in advance!
© Stack Overflow or respective owner