I am trying to cache the results of a query which won't change very often, if at all. In my class I have a private class variable private $_cache and in my constructor I initialize it the way I do with most of my caching:
// Setup caching
$frontendOptions = array('lifeTime' => (strtotime('+1 week') - time()));
$backendOptions = array('cache_dir' => '../application/cache');
$this->_cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
Later, in a function I attempt to cache a query's results:
$cache_id = 'all_station_results';
if ( ($results = $this->_cache->load($cache_id)) === false )
{
// Get all data from stations table
$sql="SELECT * FROM locations";
$sth = $this->_db->query($sql);
// Serialize query results
$data = serialize($sth);
// Write to cache
$this->_cache->save($data, $cache_id);
}
else
{
// Return results from cache
return unserialize($results);
}
This throws an exception:
You cannot serialize or unserialize PDOStatement instances
So I tried without serializing and I get this exception thrown:
Datas must be string or set automatic_serialization = true
Now, obviously a PDOStatement isn't a string and I don't see the difference between setting automatic_serialization = true and manual serialization.
How can I cache this PDOStatement object?
locationstable has 2,792 rows and 14 columns and ends up being a fairly large dataset. And yes, that's with it being normalized...LOL. – cillosis Feb 4 '12 at 15:02