**更新06/23 **
此时我能够将问题与一个简单的例子区分开来。首先,我存储了一些示例项目:
apc_add('MY_APC_TESTA_1','1');
apc_add('MY_APC_TESTA_2','2');
apc_add('MY_APC_TESTA_3','3');
apc_add('MY_APC_TESTB_4','4');
apc_add('MY_APC_TESTB_5','5');
apc_add('MY_APC_TESTB_6','6');
然后我使用APCIterator检索项目,使用foreach循环计算它们,另外使用apciterator类的getTotalCounts方法进行双重检查。
$iterator = new APCIterator('user', '/^MY_APC/', APC_ITER_VALUE);
function showCache() {
echo "keys in cache<br>-------------<br>";
foreach ($items AS $key => $value) {
echo $key . "<br>";
}
}
$i = 0;
foreach ($iterator as $current_item) {
$i++;
}
echo 'getTotalCount: '.$iterator->getTotalCount().'<br>'; // output: 6
echo 'foreach count: '.$i.'<br>'; // output: 6
showCache();
在存储我收到此输出的项目后立即调用此脚本:
getTotalCount: 6
foreach count: 6
keys in cache
-------------
MY_APC_TESTA_1
MY_APC_TESTA_2
...
几小时或一天后调用此脚本我会收到此输出:
getTotalCount: 6
foreach count: 0
keys in cache
-------------
因为您可以看到迭代器类仍然可以使用其方法getTotalCount检索总计数,但是foreach循环会带来空结果,尽管它提前几个小时工作。这就是我的缓存处理程序无法正常工作的原因,因为他们将apciterator与apc_delete($iterator)
结合使用以获取相应的项目,并在进行修改后清除它们。由于foreach /数组为空,因此无需删除任何内容。这是一个很大的问题。我不认为这是预期的行为。有什么想法可能吗?
我在VPS上进行了以下设置:
APC设置:
apc.cache_by_default 1
apc.canonicalize 1
apc.coredump_unmap 0
apc.enable_cli 0
apc.enabled 1
apc.file_md5 0
apc.file_update_protection 2
apc.filters
apc.gc_ttl 3600
apc.include_once_override 0
apc.lazy_classes 0
apc.lazy_functions 0
apc.max_file_size 1M
apc.mmap_file_mask /tmp/apc.Z1n8dS
apc.num_files_hint 512
apc.preload_path
apc.report_autofilter 0
apc.rfc1867 0
apc.rfc1867_freq 0
apc.rfc1867_name APC_UPLOAD_PROGRESS
apc.rfc1867_prefix upload_
apc.rfc1867_ttl 3600
apc.serializer default
apc.shm_segments 1
apc.shm_size 256M
apc.shm_strings_buffer 4M
apc.slam_defense 1
apc.stat 1
apc.stat_ctime 0
apc.ttl 7200
apc.use_request_time 1
apc.user_entries_hint 4096
apc.user_ttl 7200
apc.write_lock 1
答案 0 :(得分:1)
APCIterator错误地仅返回比apc.ttl更年轻的缓存条目,但它包含在getTotalCount()返回的数字中。
我已在此处提交了此错误的拉取请求:demo