Storing sessions in APC or XCache / Suggestions Anyone?

Storing sessions in APC or XCache

Hi Will,

I want to store sessions in cache, storing in disk is very slowly than ram cache, and i know we can make this with memcache. But i dont like memcache (sometimes having painful issues), APC and XCache is very pretty for me. I want to store all sessions in APC Cache or XCache. Can you make this implementation ?

  • Message #512

    There have been some requests for database-backed session, but none for cache-backed sessions yet. The main concern I would have for using APC or XCache is that they both have fairly limited storage space by default. You may need to change the cache size.

    As it stands right now I've got a number of things I'm working on, so I don't think I'll get to anything like this for a while. In the meantime, you could use PHP's native functionality for creating a different session store at http://php.net/session_set_save_handler. If I do end up getting to this, I'm just going to use using that function and building the methods into fSession.