Closed AlexandreHagen closed 9 years ago
For this error:
dyld: lazy symbol binding failed: Symbol not found: _mmc_queue_free
Does this help?
Rebuild memcached with -fgnu89-inline in CFLAGS/CXXFLAGS. What happens is the inline keyword under new rules causes _mmc_queue_pop to inline in all instances, leaving nothing for memcache.so to dynamically link to. – David Schwartz
See: http://serverfault.com/questions/386392/troubles-with-memcache-so
For this error:
telnet: connect to address ::1: Connection refused
Just to be sure: you should also be running memcached (the server, not the extension). Are you running that? You can debug it with the telnet command you provided. For more info see: http://memcached.org/
That it ! I just did not install memcached. Because of you docs said: This bundle no longer uses the PHP "memcached" extension that uses "libmemcached", see "Considerations", I was confused.
I think that would be more understandable: This bundle no longer uses the "php-memcached" extension that uses "libmemcached", see "Considerations"
Thanks for you help !
Thank you for the feedback.
Hi
I get this error : Class 'MemcachePool' not found in /vendor/leaseweb/memcache-bundle/Lsw/MemcacheBundle/Cache/LoggingMemcache.php on line 4
But everything seem to be set correctly (php -i):
And my config_dev.yml:
I get also that during a php app/console cache:clear:
$ telnet localhost 11211 give:
I use leaseweb/memcache-bundle v2.1.2, PHP 5.6.11, Symfony 2.6.9 and Homebrew 0.9.5
Thanks for help