1

我想知道如何使用缓存(MemCache)来显示我的网站上有多少注册用户和活跃用户。我目前使用:

    return mysql_result(mysql_query("SELECT COUNT(`user_id`) FROM `users` WHERE `active` =    1"), 0);

这不好用,因为在每次页面加载时,它都会查询数据库。这不好。那么我将如何继续制作“memcache”或类似的东西,它会在大约 10 分钟后将这个数字更新给所有用户?

我用谷歌搜索了如何,但我真的无法很好地了解它。

谢谢!

4

1 回答 1

3

我会给你指导而不是完整的文档/教程。

在尝试安装 Memcached 之前,您应该使用MySQLiPDO而不是 mysql_* 函数。查看本文档中的警告消息。

您应该安装 Memcached及其PHP 扩展

完成后,通过调用函数phpinfo()确保它已启用。如果没有 Memcached,则安装失败。

这是一个明确的代码片段

$mc = new Memcached();
$mc->addServer('localhost', 11211); // add a new server to the pool

// you will want to vary this key according to the query
// if two different queries use the same key your functions will return unexpected data
$cacheKey = 'a-custom-key-that-defines-the-data-within-it';

// how long will it take for the cache to expire in seconds : an hour
$cacheLifetime = 3600; 

$data = $mc->get($cacheKey); // we get the data from cache

// check if Memcached was able to retrieve the data
if ($mc->getResultCode() === Memcached::RES_FAILURE) {
    // if for some reasons the data is not there we get it and reinject into memcached
    $data = mysql_result(mysql_query("SELECT COUNT(`user_id`) FROM `users` WHERE `active` =    1"), 0);

    $mc->set($cacheKey, $data, $cacheLifetime); // save the data in the defined $cacheKey
}

return $data;
于 2013-03-16T05:00:10.780 回答