Rasmus Lerdorf wrote:

Not much documentation is needed:

 if(!$dict = apc_fetch('dict')) {
   $dict = function_that_returns_a_dictionary_array_or_object();
   apc_store('dict',$dict);
 }

That's all. [snip]

-Rasmus

Wow, I should have tried harder to make it work.. thnx !

Evert

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to