kuldeep.kamboj
kuldeep.kamboj

Reputation: 2606

Which data in cached in yii after enable Yii

I checking out the Schema Cache part of Yii. Then I found the way for enabled via CFileCache and schemaCachingDuration. It is done without any problems. Now I am thinking as I did not specified which components should be cached. So Which part of application, Yii cached after enabled caching (In the way when we did not set any of other cache settings ). It just schema or more ?

Upvotes: 0

Views: 281

Answers (1)

Michael Härtl
Michael Härtl

Reputation: 8607

By default Yii only caches:

All other cache features (schema caching, data caching, fragment caching, page caching) are only used on demand (i.e. if explicitely enable/use them).

Upvotes: 3

Related Questions