Hello Experts,
Sorry for posting this in this list but I am not finding any documentation on this APC php.ini setting
apc.preload_path
I have tried the following but it doesn't seem to work
apc.preload_path = "+/core/*"
apc.preload_path = "/core/*"
What I am looking for is files in certain directories (single or multiple paths are even better) to be precached when the PHP
module is first loaded so the first hit is not a miss.
Can this be achieved via APC?
I am using php 4.4.2 on BSD.
Thanks
I generally find it more reliable to use iptables to stop incoming requests
while priming the cache using a small script.
Hello Experts,
Sorry for posting this in this list but I am not finding any documentation
on this APC php.ini setting
apc.preload_pathI have tried the following but it doesn't seem to work
apc.preload_path = "+/core/*"
apc.preload_path = "/core/*"
What I am looking for is files in certain directories (single or multiple
paths are even better) to be precached when the PHP
module is first loaded so the first hit is not a miss.
Can this be achieved via APC?I am using php 4.4.2 on BSD.
Thanks
Hello Experts,
Sorry for posting this in this list but I am not finding any documentation on this APC php.ini setting
apc.preload_pathI have tried the following but it doesn't seem to work
apc.preload_path = "+/core/*"
apc.preload_path = "/core/*"
There is no glob support on the preload path. It is just a straight prefix.
-Rasmus