Windows 上的 Memcached(不是 memcache)PHP 扩展

2022-01-14 00:00:00 memcached xampp php pecl

我似乎找不到 PHP 的 MemcacheD 扩展.

I can't seem to find the MemcacheD extension for PHP.

php_memcache.dll有几个编译,但不一样.

There are a few compilations of php_memcache.dll, but that's not the same.

我缺少的主要是 getMulti(),它没有'在 Memcache 中不存在.

The main thing I'm missing is getMulti(), which doesn't exist in Memcache.

到目前为止我找到了这个,但没有 DLL:

So far I found this, but there's no DLL:

http://pecl.php.net/package/memcached

推荐答案

官方 - 它不存在.不过,有几个人创建了自己的 DLL.这是一个创建 dll 的人的博客:

Officially - it does not exist. There are several people who have created their own DLL's though. Here is one person's blog who has created the dll:

http://trondn.blogspot.com/2010/07/libmemcached-on-win32.html

这里是包含源代码的存储库的链接,因此您可以为 memcached 构建自己的 DLL:

Here is a link to the repository with the source so you can build your own DLL for memcached:

http://bazaar.launchpad.net/~trond-norbye/libmemcached/mingw32/files

相关文章