是否可以使用PHP-CGI运行APC?我无法获取上传文件的apc上传值,我使用的配置是:
apc.rfc1867 On
apc.rfc1867_freq 0
apc.rfc1867_name APC_UPLOAD_PROGRESS
apc.rfc1867_prefix upload_
apc.rfc1867_ttl 3600
php代码:
$status = apc_fetch('upload_'.$uid); // $uid = id for the file
答案 0 :(得分:2)
没有。当作为CGI运行时,APC不起作用 - 它依赖于与其他进程共享数据,这只有在所有PHP进程一起启动时才有效。 (仅当PHP作为Apache模块运行时或在FastCGI / FPM下运行时才会出现这种情况。)