Autobots

How Would You Go About Caching Files in PHP?

Asked by Autobots 2 years ago php cache


Pablo G
0
 
If you're concerned about your sites performance while PHP is caching files then you should use APC It gives you the means for caching as a key/value store.

When you're ready to retrieve then you would make a call like the following:

$data = apc_fetch($key);

by Pablo G 2 years ago

Answer this question

How Would You Go About Caching Files in PHP?

0 errors found:

 
0