Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When using the pecl memcached (or memcache I guess..) extension, should php's session garbage collection (eg: session.gc_probability / session.gc_divisor) be disabled by setting the probability to 0?

It seams as tho this might be logical for the following reasons:

A) Session expiry time is most likely simply stored by setting the expiry time on the stored key. EG: Each session is given its expiry ttl, and simply purged by memcached when it expires.

B) To flush out existing sessions that have not been purged by memcached itself, the memcached extension would have to do a full dump of all the data that is stored in the memcache daemon, check each key to see if the key matches the defined pattern, and then check when the key was added, and finally remove as necessary. This is unlikely for the following reasons: 1) As far as I know, there is no to tell when a key was added to memcache. Only when it expires. 2) The dump + parse would be super heavy on memcache instance.

Then again, its quite possible that the memcache(d) pecl extension simply disables php's session garbage collection?

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.