问题描述
- memcache 安装好后获取的stats 命令 time错误
-
在windows server 2008R2上安装memcache好后,其他的使用正常,就是这个时间是错误的,然后失效时间错误
使用的set方法:
$this->mmc = new memcache;
$this->mmc->connect("127.0.0.1", 11211);
$this->cache_time = 30*60*1;
public function set_user_token($key)
{$time = $this->cache_time; $mmc = $this->mmc; $value=self::getHash($key); memcache_set($mmc,$key,$value,0,$time); }
解决方案
memcache-命令-stats
memcache-命令-stats
解决方案二:
stats 命令出来的time是错误的,而失效时间也是错误的,请大神帮忙
时间: 2025-01-26 19:25:17