apciterator 在一定时间后无法检索项目

apciterator can't retrieve items after certain amount of time

**更新 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 class 的 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
-------------

正如您所见,迭代器 class 仍然可以使用其方法 getTotalCount 检索总计数,但是 foreach 循环会带来空结果,尽管它在几个小时前就开始工作了。这就是为什么我的缓存处理程序不工作的原因,因为它们将 apciterator 与 apc_delete($iterator) 结合使用来获取相应的项目并在进行修改后清除它们。由于 foreach/array 是空的,因此没有可删除的内容。这是一个巨大的问题。我不认为这是预期的行为。知道这怎么可能吗?

我在 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

APCIterator 错误地只 returns 缓存小于 apc.ttl 的条目,但它在 getTotalCount() 返回的数字中包含了这些条目。

我已经在此处提交了针对此错误的拉取请求:https://github.com/krakjoe/apcu/pull/253