You would think this would be super-easy to find, but I can't seem to.
Asked
Active
Viewed 3,548 times
2 Answers
7
There appears to be no limitation on key size/content.
Internally, keys are initialized via the C function apc_cache_make_user_key, which takes the given key string ("identifier") and stores it along with a hashed version.

Steve Clay
- 8,671
- 2
- 42
- 48
2
I really don't know PHP, but it looks like values are added using apc_add()
or apc_store()
, which take keys which are strings. I would infer that the maximum key length is therefore the maximum length of a string in PHP.
According to PHP: Strings,
Note: It is no problem for a string to become very large. PHP imposes no boundary on the size of a string; the only limit is the available memory of the computer on which PHP is running.

Matt Ball
- 354,903
- 100
- 647
- 710
-
@Steve Clay: Agreed, and thanks for your actual answer. Very long keys are more likely to exhaust APC's allotted shared memory space (default=32M) before PHP (or even the system) runs out of memory. – Zilk Aug 14 '13 at 00:00