Zend_Cache save from command line and access from browser
- by Krishna Sunuwar
May be I am this is super-easy but I couldnt' figure out way. I have script running in command line which save cache using Zend_Cache
$frontendOptions = array(
'lifetime' => NULL,
'automatic_serialization' => true
);
$backendOptions = array(
'cache_dir' => "/home/tmp/cache"
);
$cache =…