Where's php_memcached.dll available now? [closed]

你说的曾经没有我的故事 提交于 2019-12-05 00:22:15

You can try this: memcached-client from https://github.com/fwolf/memcached-client:

"As there has no php memcached extension for windows now, it's difficult to build develop envionment, so this class will be helpful.

Inspried by: http://github.com/joonas-fi/xslib-memcached"

Usage:

Just as php_memcached extension, new Memcached object and etc.

$m = new Memcached();
$m->addServer('localhost', 11211);

$m->set('foo', 'bar');
$m->get('foo');

Supported method:

addServer
addServers
delete
get
getOption
getResultCode
getResultMessage
getServerList
set
setOption
setOptions

Trail of links from the manual page in reverse chronological order:

http://libmemcached.org/
http://tangent.org/
https://github.com/andreiz/php-memcached
http://pecl.php.net/package/memcached
http://www.php.net/manual/en/memcached.installation.php

There's a broken link to http://tangent.org/552/libmemcached.html in between that somebody should update though.

Seems like only the source code is available and you'll have to compile it yourself.

you can found here http://windows.php.net/

There are several versions of php_memcache.dll, the right one will depend on your version of PHP. you should download according to your php version

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!