Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does memcached.dll exist?

Does the memcached (not memcache) extension exist for Windows? I have looked through old answers and haven't found anything.

like image 684
qitch Avatar asked Mar 13 '12 22:03

qitch


2 Answers

It does not exist and is very unlikely to exist any time soon. The main problem is not the extension itself but the libmemcached library. This library is barely portable to anything but a linux system, so windows support won't happen anytime soon (using Visual C).

like image 64
Pierre Avatar answered Oct 04 '22 22:10

Pierre


You can get the php extension "memcache" to use memcached with php on windows here http://downloads.php.net/pierre/

Memcached is the server daemon and you can get it for windows here http://splinedancer.com/memcached-win32/

The php extension also called memcached requires libmemcached which doesn't seem well supported on windows which is probably why that extension doesn't exist for windows.

like image 34
Erik Kettenburg Avatar answered Oct 04 '22 20:10

Erik Kettenburg