使用方法:
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 * FROM ユーザー");
$data = array();
// すべてのデータをフェッチし、配列に配置します。
while($row = mysql_fetch_assoc($result)) { $data[] = $row; }
// データをキャッシュに 10 分間保存します
$cache->store($key,$data,600);
}
复制代码 代码如下:
抽象クラス Cache_Abstract {
抽象関数 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);
}
function 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, $重さ);
}
}
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))
return false;
$h = fopen($filename, 'r');
if (!$h)
return 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 を返します。
}
return $data[1];
}
function delete($key) {
$filename = $this->getFileName($key);
if (file_exists($filename)) {
return unlink($filename);
}
else {
return false;
}
}
プライベート関数 getFileName($key) {
return '/tmp/s_cache' . md5($key);
}
}
?>