Hi all,
When trying to use the Memcache feature, I systematically get the error mentioned in the title.
I'm using PHP5-FPM with php 5.4.9 on a Ubuntu 13.04. The memcached server, libmemcached10 and the PHP memcached extension are all installed and functional:
dpkg -l memcached*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==========================-==================-==================-===============================================
ii memcached 1.4.14-0ubuntu1 amd64 A high-performance memory object caching system```
```bash
dpkg -l libmemcached*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==========================-==================-==================-================================================
un libmemcached <none> (no description available)
ii libmemcached10:amd64 1.0.8-1 amd64 C and C++ client library to the memcached server
un libmemcached2 <none> (no description available)
un libmemcached3 <none> (no description available)
un libmemcached6 <none> (no description available)
un libmemcached9 <none> (no description available)```
```bash
php5-fpm -m|grep memcache
memcached```
```bash
php5-fpm -i|grep memcache
/etc/php5/fpm/conf.d/20-memcached.ini,
memcached
memcached support => enabled
libmemcached version => 1.0.8
memcached.compression_factor => 1.3 => 1.3
memcached.compression_threshold => 2000 => 2000
memcached.compression_type => fastlz => fastlz
memcached.serializer => php => php
memcached.sess_binary => 0 => 0
memcached.sess_lock_wait => 150000 => 150000
memcached.sess_locking => 1 => 1
memcached.sess_prefix => memc.sess.key. => memc.sess.key.
Registered save handlers => files user memcached```
Now, the error message I get seems to indicate that Phalcon actually uses memcache and not memcache*d*.
If that's the case, must I implement my own backend memcached then?
Thanks,
Steven