Yii cache

Hello,

i just set up the cache using:




	public function filters()

	{

		return array(

			array(

				'COutputCache',

				'duration'=>3600,

				'varyByRoute'=>true,

			),

		);

	}



in my controller so I wonder: where is the cache held? I can’t find any cache files anywhere.

It depends on what you use as the cache storage medium. Read the docs related to how to configure the cache component:

http://www.yiiframework.com/doc/guide/caching.overview

thank you