views:

182

answers:

2

Hi,

I was just wondering and didn't find explicit response on what in the model class (ActiveRecord) is cached when setting config.cache_classes to true ?

Could someone tell me or point me to the doc I didn't found ?

Thanks

+1  A: 

It determines whether or not your application classes are reloaded on each request. If it's true, you have to restart your server for code changes to take effect (i.e. you set it to true in production, false in development.)

Documentation is here.

x1a4
A: 

x1a4 has it.

If you're in the script/console you can always issue a reload! command to reload any code changs.

RobB