CodeIgniter Forums
about the cache - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: about the cache (/showthread.php?tid=52349)



about the cache - El Forum - 06-07-2012

[eluser]FightingMan[/eluser]
Code:
$this->cache->save('foo', 'bar', 10);
$a = $this->cache->get('foo');
print_r($a);
i haven't load the driver,but i can cached foo=>bar successful,anyone can tell me what's the reason?
it return me 'bar' and doesn't write into application/cache directory Sad