[eluser]ACEFX[/eluser]
Hi
I have a subfolder in my controller folder called "zones" and in it i have few number of controllers calling and data from database and caching them.
To delete the data once the user logs out, i used
Code:
$this->db->cache_delete('zones/student', 'general');
Which i believe should delete the information cached by the controller in the subfolder but the cache has refused to delete and even when i called the controller directly
Code:
$this->db->cache_delete('student', 'general');
and also tried
Code:
$this->db->cache_delete('zones.student', 'general');
and
Code:
$this->db->cache_delete('zones+student', 'general');
None worked, Can someone help me out, cause presently the cache are getting more than enough.
Thanks