首页 > 后端开发 > 正文

thinkphp商城如何处理高并发,怎么使用memcache做缓存

2024-12-13 02:07:54 | 我爱编程网

我爱编程网小编给大家带来了thinkphp商城如何处理高并发,怎么使用memcache做缓存相关文章,一起来看一下吧。

本文目录一览:

thinkphp商城如何处理高并发,怎么使用memcache做缓存

thinkphp商城如何处理高并发,怎么使用memcache做缓存

ThinkPHP其实并不支持分布式缓存功能,这可以从官方提供的CacheMemcache.class.php文件中看到:
if(empty($options)) {
  $options = array
  (
    'host' => '127.0.0.1',
    'port' => 11211,
    'timeout' => false,
    'persistent' => false
  );
}
$func = $options['persistent'] ? 'pconnect' : 'connect';
$this->expire = isset($options['expire'])?$options['expire']:C('DATA_CACHE_TIME');
$this->handler = new Memcache;
$this->connected = $options['timeout'] === false ?
$this->handler->$func($options['host'], $options['port']) :
$this->handler->$func($options['host'], $options['port'], $options['timeout']);
   
不过不要紧,稍微修改下就行了,即
   
if(empty($options)) {
  $options = array
  (
    'timeout' => false,
    'persistent' => false,
    'servers'=>array(
      array('ip'=>'127.0.0.1','port'=>11211),
      array('ip'=>'127.0.0.1','port'=>11212),
      array('ip'=>'202.116.32.4','port'=>11211),
    ),
  );
}
//分布式处理函数
$func="addServer";
$this->expire = isset($options['expire'])?$options['expire']:C('DATA_CACHE_TIME');
$this->handler = new Memcache;
if($options['timeout']===false)
{
  foreach($options['servers'] as $server)
  {
    $this->handler->$func($server['ip'],$server['port']);
  }
}
   
闲来无事,于是就在本机上启动了两个MemCache服务器,顺手编写了一段简单的监控代码(隔一段时间自动刷新一次),进行测试。如果发现服务器运行不正常,则使用PhpMailer自动发送一封Email到管理员邮箱。测试结果表明,两台Memcache服务器均工作正常,而另外一台虚假的服务器当然是无法连接到的。

thinkphp商城如何处理高并发,怎么使用memcache做缓存

usememcachedandphp-memcache(d)

针对 memcached 版本从1.2升级至1.3,删除操作协议发生变化。而 memcached 1.4版本中,错误的格式会导致致命错误:失败,错误信息为“CLIENT_ERROR bad command line format”。因此,使用php pecl-memcache时,在新版本中会遇到问题。

对于php pecl-memcached,由于它使用的是libmemcache,所以不存在上述问题。为了在代码中选择使用哪个memcache扩展,我们编写了一个函数:

$mem_flag = 0;$mem_conn = null;function mcached_conn(){global $config, $mem_flag, $mem_conn;if($mem_flag != 1){if ($config['mcache']['version']==0){$mem_conn = memcache_pconnect($config['mcache']['host'], 11211);} else {$mem_conn = new Memcached();$mem_conn->addServer($config['mcache']['host'], 11211);}$mem_flag = 1;}return $mem_conn;}

在需要设置、获取或删除缓存时,通过memcache_version_set()、memcache_version_get()和memcache_version_del()函数,根据配置中的mcache版本信息,选择使用memcache或Memcached。

使用memcache_version_set()函数时,如果配置的mcache版本为0,则调用memcache_set()方法;否则,使用Memcached对象的set()方法。

memcache_version_get()函数同样遵循类似逻辑,选择memcache_get()或Memcached对象的get()方法获取缓存值。

memcache_version_del()函数用于删除缓存,根据配置版本选择memcache_delete()或Memcached对象的delete()方法执行删除操作。

通过这个设计,程序能够智能地根据memcache的版本选择合适的缓存扩展,避免了版本差异带来的问题。

thinkphp里面怎样配置memcache

我爱编程网(https://www.52biancheng.com)小编还为大家带来thinkphp里面怎样配置memcache的相关内容。

THINKPHP 自带memcache 扩展。
这个是配置信息,写到config里面去就行了。
$options = array (
'host' => C('MEMCACHE_HOST') ? C('MEMCACHE_HOST') : '127.0.0.1',
'port' => C('MEMCACHE_PORT') ? C('MEMCACHE_PORT') : 11211,
'timeout' => C('DATA_CACHE_TIMEOUT') ? C('DATA_CACHE_TIMEOUT') : false,
'persistent' => false,
'expire' =>C('DATA_CACHE_TIME'),
'length' =>0,
); 我爱编程网

以上就是我爱编程网小编给大家带来的thinkphp商城如何处理高并发,怎么使用memcache做缓存,希望能对大家有所帮助。更多相关文章关注我爱编程网:www.52biancheng.com

免责声明:文章内容来自网络,如有侵权请及时联系删除。
与“thinkphp商城如何处理高并发,怎么使用memcache做缓存”相关推荐