Disable cacheing

Hello guys,

how can I disable cacheing in Yii2?

Thanks

it is not enabled unless you know how to do it.

look in config file for

[components =>

[ cache => [ ‘THIS IS CACHE’ ]

]

but if your app was written for cache, use yii\caching\DummyCache class

Thanks!


    

'components' => [

    	'cache' => [

            'class' => 'yii\caching\DummyCache',

        ],



Was what I was looking for.