views:

486

answers:

1

Hi

Storing sessions in disk very slow and painful for me. Im having very high traffic. I want to store session in Advanced PHP Cache, How can i make this ? Thanks

+1  A: 

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.

Rob