|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-12-20 01:37 UTC] gopalv82 at yahoo dot com
[2006-12-20 13:10 UTC] jfitzdela at gmail dot com
[2006-12-22 08:57 UTC] gopalv82 at yahoo dot com
[2009-10-22 21:07 UTC] jdub at bethesignal dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
Description: ------------ I use php CLI very heavily for a large project. For some reason, unless I've missed something (entirely likely), apc_store fails to write the data to memory in CLI. It works beautifully elsewhere, but returns false when executed in CLI. If there is further information I can provide, please tell me, as I need this fixed BADLY! I love APC -- it is a brilliant package -- but this would be a killer. - John Reproduce code: --------------- <? echo apc_store("key1", "test"); ?> Expected result: ---------------- Key string "test" to be stored in memory with key "key1", return code 1/true. Actual result: -------------- Returns 0, data not written.