Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 251

Show
Ignore:
Timestamp:
12/22/04 13:53:47 (4 years ago)
Author:
david
Message:

Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r250 r251  
    11*SVN* 
     2 
     3* Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects 
     4  in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke] 
    25 
    36* Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an 
  • trunk/actionpack/lib/action_controller.rb

    r51 r251  
    3333require 'action_controller/layout' 
    3434require 'action_controller/flash' 
     35require 'action_controller/session' 
    3536require 'action_controller/dependencies' 
    3637require 'action_controller/scaffolding' 
     
    4950  include ActionController::Helpers 
    5051  include ActionController::Cookies 
     52  include ActionController::Session 
    5153end 
    5254