Storing sessions in disk very slow and painful for me. I'm having very high traffic. I want to store session in Advanced PHP Cache, how can I do this?
|
|
||||
|
In theory, you ought to be able to write a custom session handler which uses APC to do this transparently for you. However, I haven't actually been able to find anything really promising in a quick five-minute search; most people seem to be using APC for the bytecode cache and putting their sessions in memcached. |
|||
|
|
Simply putting your /tmp disk (or, wherever PHP session files are stored) onto a RAM disk such as The performance gain may be significantly less, but it will still be significantly faster than on-disk sessions. |
||||
|
|
|
Store it in cookies (encrypted) or MongoDB. APC isn't really intended for that purpose. |
|||
|
|
|
You can store your session data within PHP internals shared memory.
But it needs to be available: http://php.net/manual/en/session.installation.php |
|||
|
|
|
Another good solution is to store PHP sessions in memcached
|
|||
|
|
|
Explicit Session Closing immediately following Session Starting, Opening and Writing should solve the locking problem in Unirgy's Answer(where session access is always cyclic(start/open-write-close). I also Imagine a Second class - APC_journaling or something similar used in conjunction with Sessions would be ultimately better.... A session starts and is written to with a unique external Id assigned to each session, that session is closed, and a journal (array in apc cache via _store & _add) is opened/created for any other writes intended to go to session which can then be read, validated and written to the session(identified by that unique id!) in apc at the next convenient opportunity. I found a good blog post Explaining that the Locking havoc Sven refers to comes from the Session blocking until it's closed or script execution ends. The session being immediately closed doesn't prevent reading just writing. http://konrness.com/php5/how-to-prevent-blocking-php-requests - link to the blog post. Hope this helps. |
||||
|
|
|
I tried to lure better answers by offering 100 points as a bounty, but none of the answers were really satisfying. I would aggregate the recommended solutions like this: Using APC as a session storageAPC cannot really be used as a session store, because there is no mechanism available to APC that allows proper locking, But this locking is essential to ensure nobody alters the initially read session data before writing it back. Bottom line: Avoid it, it won't work. AlternativesA number of session handlers might be available. Check the output of File storage on RAM diskWorks out-of-the-box, but needs a file system mounted as RAM disk for obvious reasons. Shared memory (mm)Is available when PHP is compiled with Memcache(d)PHP comes with a dedicated session save handler for this. Requires installed memcache server and PHP client. Depending on which of the two memcache extensions is installed, the save handler is either called |
|||
|
|