APC:apc_fetch经常返回false,但有时会成功

时间:2012-04-27 14:24:36

标签: php caching apc litespeed

  • APC版本:3.1.9。
  • PHP版本:5.2.17
  • 我使用Litespeed
  • DEFAULT PHP:5
  • PHP4 SAPI:cgi
  • PHP5 SAPI:dso
  • SUEXEC:已启用

我创建了2个文件。 第一个文件,设置apc var:

<?php
$bar = 'BAR';
apc_store('foo_test', $bar);
echo 'stored';
?>

第二个文件,尝试获取apc var:

<?php
var_dump(apc_fetch('foo_test'));
?>

我访问了第一个文件,一切都很好。 我打开第二个文件,我刷新几次,通常(几乎90%),它返回false。并且很少返回正确的答案。

这是我的APC设置。

apc.cache_by_default    1
apc.canonicalize    1
apc.coredump_unmap  0
apc.enable_cli  1
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   20M
apc.mmap_file_mask  
apc.num_files_hint  1000
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    512M
apc.slam_defense    1
apc.stat    0
apc.stat_ctime  0
apc.ttl 0
apc.use_request_time    1
apc.user_entries_hint   4096
apc.user_ttl    7200
apc.write_lock  1

1 个答案:

答案 0 :(得分:2)

我的猜测是Litespeed正在使用FastCGI运行PHP。所以它产生了一些子进程,然后在它们之间发送请求。问题是可能 APC将数据存储在堆内存中(而不是存储在共享内存中),因此每个FastCGI实例都有自己的APC数据。一个实例中的数据在其他实例中不可见。您在实例#1中设置数据,但随后您的获取请求转到实例#2,实例#3 ...并且您得到FALSE。当您点击实例#1时,您将收到保存的值。

编辑:用--disable-apc-mmap编译APC模块(禁用mmap支持并改为使用IPC shm)应解决问题。