tonydspaniard / Yii-extensions

My small contribution to the Yii framework community
124 stars 50 forks source link

EScriptBoost requires caching enabled #4

Closed Andrewpk closed 12 years ago

Andrewpk commented 12 years ago

Had to track down an error where caching needed to be enabled for EScriptBoost and EScriptBoostClient to work properly.

Any Yii caching mechanism works, it just needs some form of cache in the main.php config.

As soon as I enabled apc such as the following - everything worked:

'cache' => array(
    'class' => 'system.caching.CApcCache',
),
tonydspaniard commented 12 years ago

Yes you are right, I should've explained that on the wiki... Thank you for pointing at that.