0

the php documentation for memcache and memcached shows up as two different libraries... I have downloaded the following;

http://windows.php.net/downloads/pecl/releases/memcache/3.0.8/php_memcache-3.0.8-5.5-ts-vc11-x86.zip

This is the windows binaries for memcache library which the documentation is here: http://uk1.php.net/manual/en/book.memcache.php

and There is also a library for Memcached: http://uk1.php.net/manual/en/book.memcached.php

So is there a valid windows binary which runs with php5.5 which enables memcached, as from reading the documentation.. This library offers more expandability

I have looked over: https://serverfault.com/questions/63383/memcache-vs-memcached about the possibilities aswell, there is no specifics on how to enable this library within php

Community
  • 1
  • 1
Daryl Gill
  • 5,464
  • 9
  • 36
  • 69

1 Answers1

0

Memcached has no official dll release for windows.

You can either compile it yourself from the PECL source or use a precompiled dll from someone else : http://shikii.net/blog/installing-memcached-for-php-5-3-on-windows-7/

See also : Memcached (not memcache) PHP extension on Windows

Community
  • 1
  • 1
Kethryweryn
  • 639
  • 4
  • 11
  • Ill check this out when im back in the office or on a computer, thanks! – Daryl Gill Aug 20 '13 at 15:26
  • After looking, this is offering the memcached server, and the memcache extension within php.. and not the `memcached` library for PHP – Daryl Gill Aug 21 '13 at 11:47
  • See http://stackoverflow.com/questions/9693195/does-memcached-dll-exist You'll have to try to compile it yourself with the link I gave if you really want it. – Kethryweryn Aug 22 '13 at 10:11