![]() |
Database Caching problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forum-20.html) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forum-21.html) +--- Thread: Database Caching problem (/thread-26145.html) |
Database Caching problem - El Forum - 01-07-2010 [eluser]Kriesi[/eluser] Hey everyone, I got a strange problem concerning Database caching: My config looks like this: Code: $db['default']['db_debug'] = TRUE; When caching is turned off Code: $db['default']['cache_on'] = FALSE; The funny thing: when I turn caching on Code: $db['default']['cache_on'] = TRUE; I am using the active record database class to send my queries, dont know if thats important... My problem is that I need it to work with caching turned off... Any suggestions? |