I just want to know because I have an issue with codeigniter database caching.
I tried to enable the cache thru the database.php file
$db['default']['cache_on'] = TRUE;
$db['default']['cachedir'] = "application/cache";
The thing is, it successfully creates the cache, I can also delete it using $this->db->cache_delete()
There's also no error. But the problem is I can't retrieve the data from the cache.
What do you guys think is the problem.. I've been looking the internet but no luck.