Wednesday 16 February 2011 9:42:44 am
I'm trying to run a raw sql query and have it not be cached. When I run the following
$db = eZDB::instance( );
$query = 'select * from table';
$data = $db->arrayQuery( $query );
print_r ( $data ); It returns the results the first time, but not the second, third, etc time. I'm assuming ez publish caches those results somewhere. Is there anyway to disable cache just for a particular query?
|