Questions tagged «memcached»

Memcached是用于少量任意数据(字符串,对象)的内存键值存储。它通常用作高速缓存以加快对常用数据的访问。

5
如何设置memcached以使用unix套接字?
虽然我可以在Debian上使用memcached来使用默认的11211端口,但是在设置Unix套接字时遇到了很大的困难。 通过阅读,我知道我需要创建一个memcache.socket并添加: -s /path/to/memcache.socket -a 0766 要/etc/memcached.conf并注释掉默认的连接端口和IP,即 -p 11211 -l 127.0.0.1 但是,当我重新启动memcached时,我在Drupal站点上收到内部服务器错误。 我正在尝试实现unix套接字,以避免TCP / IP开销并提高整体内存缓存的性能,但是不确定是否可以通过此调整获得多少性能。 感谢您的提示或可能的配置来解决此问题。
12 memcached  socket 

2
Memcached侦听所选接口
我在具有两个接口-eth0(公共)和eth1(私有)的Debian服务器上设置Memcached。 我希望Memcached同时监听eth1和lo(环回),以便即使专用网络出现故障也可以访问它,但不能访问eth0(公共)。 从memcached 的手册页中,我了解到该-l选项只能使用一个IP地址。我曾考虑过使用UNIX套接字进行本地连接,但是手册页中说 -s 监听的Unix套接字路径(禁用网络支持)。 我知道的唯一其他方法是使用IPTables阻止通过eth0的连接。还有其他不使用防火墙的解决方案吗?
9 memcached 

7
无法加载memcache.so扩展名
我使用configure命令从源代码构建了PHP './configure' '--prefix=/usr/local/php-5.2.8' '--with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d' '--with-apxs2=/usr/local/httpd/bin/apxs' '--with-mysql=/usr/local/mysql/' '--with-zlib' 我安装了php memcache extension: wget http://pecl.php.net/get/memcache tar -zxvf memcache-2.2.5.tgz cd memcache-2.2.5 phpize ./configure --enable-memcache make make install 我添加到我的/usr/local/lib/php.in extension=memcache.so 重新启动了我的Apache并运行php-m,但是php似乎没有加载memcache扩展,我从该站点http://www.howtoforge.com/forums/showthread.php?t=26554遵循了此解决方案 我添加了完整路径 extension=/usr/local/lib/php/extensions/no-debug-non-zts-20060613/memcache.so 重新启动了apache,但是没有加载memcache扩展!我谷歌周围,但同样的问题!我如何加载此扩展名_ _”
9 memcached 

3
memcache.so的问题
我被要求启动其他人建立的网站。这是一个需要运行Memcached的Wordpress商店站点,我一直在使Memcached和memcache php插件在本地服务器上运行时遇到麻烦。在安装memcached和memcache PHP插件之前,我会收到此错误: Fatal error: Class 'Memcache' not found in [Path]wp-content/object-cache.php on line 350 现在,我已经安装了memcached和memcache PHP插件(通过Homebrew),我得到了一个“未收到数据”页面,并在我的Apache错误日志中得到以下错误: dyld: lazy symbol binding failed: Symbol not found: _mmc_queue_pop Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/memcache.so Expected in: flat namespace dyld: Symbol not found: _mmc_queue_pop Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20090626/memcache.so Expected in: flat namespace [Sat May 05 16:38:27 2012] [notice] …
8 php  mac  memcached  memcache  lion 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.