Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何らかの理由で、APC は自動的にファイルを正常にキャッシュしていますが、apc_add または apc_store が使用されている場合、ユーザー変数のキャッシュを拒否します。
APC と phpinfo() 関連のスクリーンショットを投稿しました。最近、PHP の session.save_path; を変更しました。それは何か関係があるのでしょうか?新しいキャッシュ ディレクトリはファイルを正常に保持しています。
D'oh ..の問題は、cURLリクエストの結果としての誤ったキャッシュコードに関連していました。ごめん!これは、将来誰かのために使用するコードテストです。
$key = '1122334455'; if (apc_exists($key)) { echo "Key exists: "; echo apc_fetch($key); } else { echo "Key NON-existent."; echo apc_add($key, true, 2700); }