使用方法:
Memcached
复制代码代码如下:
$cache = new Cache_MemCache();
$cache->addServer('www1');
$cache->addServer('www2',11211,20); // このサーバーには 2 倍のメモリがあり、2 倍の重みが与えられます
$cache->addServer('www3',11211);
// 一部のデータをキャッシュに 10 分間保存します
$cache->store('my_key','foobar',600);
// 再度キャッシュから取り出します
echo($cache->fetch('my_key'));
复制番号代番号如下:
$cache = new Cache_File();
$key = 'getUsers:selectAll';
// データがまだキャッシュにないかどうかを確認します
if (!$data = $cache->fetch($key)) {
// データベース接続があると仮定します
$result = mysql_query("SELECT *ユーザーから");
$data = 配列();
// すべてのデータをフェッチし、配列に配置します
while($row = mysql_fetch_assoc($result)) { $data[] = $row; }
// データをキャッシュに 10 分間保存します
$cache->store($key,$data,600);
}
复制代码代码如下:
abstract class Cache_Abstract {
abstract function fetch($key);
抽象関数store($key, $data, $ttl);
抽象関数 delete($key);
}
class Cache_APC extends Cache_Abstract {
function fetch($key) {
return apc_fetch($key);
}
function store($key, $data, $ttl) {
return apc_store($key, $data, $ttl);
}
関数 delete($key) {
return apc_delete($key);
}
}
class Cache_MemCache extends Cache_Abstract {
public $connection;
function __construct() {
$this->connection = new MemCache;
}
function store($key, $data, $ttl) {
return $this->connection->set($key, $data, 0, $ttl);
}
function fetch($key) {
return $this->connection->get($key);
}
function delete($key) {
return $this->connection->delete($key);
}
function addServer($host, $port = 11211, $weight = 10) {
$this->connection->addServer($host, $port, true, $weight);
}
}
class Cache_File extends Cache_Abstract {
function store($key, $data, $ttl) {
$h = fopen($this->getFileName($key), 'a+');
if (!$h)
throw new Exception('キャッシュに書き込めませんでした');
flock($h, LOCK_EX);
fseek($h, 0);
ftruncate($h, 0);
$data = Serialize(array(time() + $ttl, $data));
if (fwrite($h, $data) === false) {
throw new Exception('キャッシュに書き込めませんでした');
}
fclose($h);
}
function fetch($key) {
$filename = $this->getFileName($key);
if (!file_exists($filename))
false を返す;
$h = fopen($filename, 'r');
if (!$h)
false を返す;
flock($h, LOCK_SH);
$data = file_get_contents($filename);
fclose($h);
$data = @ unserialize($data);
if (!$data) {
リンク解除($filename);
false を返します。
}
if (time() > $data[0]) {
unlink($filename);
false を返します。
}
$data[1] を返します;
}
function delete($key) {
$filename = $this->getFileName($key);
if (file_exists($filename)) {
return unlink($filename);
}
else {
false を返す;
}
}
プライベート関数 getFileName($key) {
return '/tmp/s_cache' . md5($key);
}
}
?>
以上は、Memcached PHP を介して Memcached + APC + 文書保存によるコードを実現し、Memcached の内容を含むため、PHP 教則に関心のある友人の助けになることを望みます。