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.

Is the Zend_Cache capable of using SASL auth to connect to the memcachier server?

share|improve this question

1 Answer

up vote 1 down vote accepted

Assuming you're using ZF 1.x, the manual says that Zend_Cache_Backend_Memcached uses the memcache extension, which does not expressly support memcached 1.4.3+'s SASL support.

Indeed, if any PHP memcached library were to ever gain support, it would be memcached, not memcache. Yes, they are different things. The reason for this is the old non-D'd extension uses an older version of the client library than the newer, D'd extension, which uses the new, official library.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.