I'm a bit messing around with the cache option for Yii, but i have a question. When i use the ActiveRecord cache, like:
$series = Post::model()->cache(3600)->getPopularPosts(5);
I see in my webLogRoute that it only saves the cache every time, but it never loads it from the cache, why not?
$series = Post::model()->cache(3600)->getPopularPosts(5);
I see in my webLogRoute that it only saves the cache every time, but it never loads it from the cache, why not?