配列を処理する関数を記述し、自動的に名前を付けることで、キャッシュ関数の呼び出しを単純化しようとしています。これは、データが頻繁に更新されないほとんどの場合に機能するはずです。これが私がこれまでに得たものです:
function save_cache($data, $name) {
// get id for name of cache
$id=shmop_open(get_cache_id($name), "c", 0644, get_array_size($data));
// return int for data size or boolean false for fail
if ($id) return shmop_write($id, serialize($data), 0);
else return false;
}
function get_cache($name) {
$id=shmop_open(get_cache_id($name), "a", 0644, shmop_size(get_cache_id($name)));
if ($id) $data=unserialize(shmop_read($id, 0, shmop_size($id)));
else return false; // failed to load data
if ($data) return $data; // array retrieved
else return false; // failed to load data
}
function get_cache_id($name) {
// build list to return a number for a string id
// maintain this as new caches are created
$id=array( 'test' => 1,
'test2' => 2
);
return $id[$name];
}
function get_array_size($a){
$size = 0;
while(list($k, $v) = each($a))$size += is_array($v) ? get_array_size($v) : strlen($v);
return $size;
}
問題は、get_cache($ name)関数の最初の行です。これは動的であるため、文字列$ nameに基づいて要求された配列のサイズを見つけ、get_cache_id($ name)のIDリストで参照する必要があります。問題は、shmop_openを使用することです。shmop_sizeのサイズが必要ですが、shmop_sizeを使用するには、最初にshmop_openを実行する必要があります。最後にapacheエラーログの13行目は、get_cache($ name)の$id変数の割り当てです。
[Wed Mar 06 15:57:57 2013] [error] [client 127.0.0.1] PHP警告:shmop_size():/ home / mark / htdocs / phplib/cacheに[1]のIDを持つ共有メモリセグメントがありません。 13行目のphp[WedMar 06 15:57:57 2013] [error] [client 127.0.0.1] PHP注意:unserialize():/ home / mark / htdocs / phplib/cacheの7769バイトのオフセット7765でエラーが発生しました。 14行目のphp
編集:動作するコードと実装-以下の答えに加えて、このスクリプトのget_array_size関数は間違っているため、完全に省略する必要があります。代わりに、save_cache関数でstrlen(serialize($ data))を使用して、保存するキャッシュのサイズを決定します。さらに、そのIDの以前に保存されたキャッシュを削除する必要があります。最終的なスクリプトは次のようになります。
function save_cache($data, $name, $timeout) {
// delete cache
$id=shmop_open(get_cache_id($name), "a", 0, 0);
shmop_delete($id);
shmop_close($id);
// get id for name of cache
$id=shmop_open(get_cache_id($name), "c", 0644, strlen(serialize($data)));
// return int for data size or boolean false for fail
if ($id) {
set_timeout($name, $timeout);
return shmop_write($id, serialize($data), 0);
}
else return false;
}
function get_cache($name) {
if (!check_timeout($name)) {
$id=shmop_open(get_cache_id($name), "a", 0, 0);
if ($id) $data=unserialize(shmop_read($id, 0, shmop_size($id)));
else return false; // failed to load data
if ($data) { // array retrieved
shmop_close();
return $data;
}
else return false; // failed to load data
}
else return false; // data was expired
}
function get_cache_id($name) {
$id=array( 'test1' => 1
'test2' => 2
);
return $id[$name];
}
function set_timeout($name, $int) {
$timeout=new DateTime(date('Y-m-d H:i:s'));
date_add($timeout, date_interval_create_from_date_string("$int seconds"));
$timeout=date_format($timeout, 'YmdHis');
$id=shmop_open(100, "a", 0, 0);
if ($id) $tl=unserialize(shmop_read($id, 0, shmop_size($id)));
else $tl=array();
shmop_delete($id);
shmop_close($id);
$tl[$name]=$timeout;
$id=shmop_open(100, "c", 0644, strlen(serialize($tl)));
shmop_write($id, serialize($tl), 0);
}
function check_timeout($name) {
$now=new DateTime(date('Y-m-d H:i:s'));
$now=date_format($now, 'YmdHis');
$id=shmop_open(100, "a", 0, 0);
if ($id) $tl=unserialize(shmop_read($id, 0, shmop_size($id)));
else return true;
shmop_close($id);
$timeout=$tl[$name];
return (intval($now)>intval($timeout));
}
AJAXオートコンプリート検索で使用するためのこの関数の呼び出し例:
header('Content-type: application/json; charset=utf-8');
include '../phplib/conn.php';
include '../phplib/cache.php';
$searchTerm=$_GET['srch'];
$test=array();
$test=get_cache('test');
if (!$test) {
$odbc=odbc_connection(); // defined in conn.php
$sql="SELECT * FROM mysearchtable";
$result=odbc_exec($odbc, $sql) or
die("<pre>".date('[Y-m-d][H:i:s]').
" Error: [".odbc_error()."] ".odbc_errormsg()."\n\n $sql");
$i=0;
while ($row=odbc_fetch_array($result)) {
foreach ($row as $key => $value) $row[$key]=trim($value);
$test[$i]=$row;
$i++;
}
save_cache($test, 'test1', 600); // 10 minutes timeout
odbc_close($odbc);
}
$result=array();
foreach ($test as $key) {
if (strpos($key['item'])===0) { // starts the string
// if (strpos($key['item'])!==false) { // in the string anywhere
$result[]=array('item' => $key['item'], 'label' => $key['label']);
}
}
echo json_encode($result);