vote up 1 vote down star

I'm using APC to cache user variables (with the apc_store/apc_fetch commands). I've also enabled APC for the CLI with the option "apc.enable_cli = 1". However, the CLI version of PHP seems to access a different APC cache from the version used by Apache.

Is it possible to configure APC to use the same cache for both CLI and web invocations?

flag

2 Answers

vote up 2 vote down

Not possible.. The only way to accomplish something like what your asking is to use something like memcacheD. Or run what you need to run through your webserver. What's running CLI that you cannot run via a web script with a cronjob?

link|flag
.. or more importantly - why do you need that kind of performance optimisation on a cli script? – troelskn Jan 13 at 21:46
Very true.. web is typically high impact/hits, and CLI one off calls. – DreamWerx Jan 13 at 21:49
I'm not bothered about APC caching the CLI script. I want to be able to access the same APC user cache from the web and CLI. If it isn't possible I'll just have to call a web script from the CLI and get it to pass in the required data. Not the most elegant solution! – Ben Dowling Jan 14 at 13:10
vote up 0 vote down

call your CLI as a CGI /path-to/cgi-sys/php5.cgi /home/name/crons/engine.php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.