[eluser]al pacino[/eluser]
hi there,
I have implemented Database caching in my web application.
I've created writable folder in my application directory & set path in database.php,
also set the parameter
$db['default']['cache_on'] = TRUE;
in the same file.
Now,when i sign up on my site,index function from controller named "homepage" is called.
So,in cache folder,i can see folder named "homepage+index" being created,with number of files.
But,next time when i hit the same URL no difference,it takes same amount of time to load the page as it was taking before without cashing.
I checked this by Enabling the Profiler ,number of queries is also not reduced.So,how does cashing exactly work in boosting performance of web application.