Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source
Show
Ignore:
Timestamp:
11/22/07 05:48:45 (8 months ago)
Author:
bitsweat
Message:

Document that the cookie store is the default session store. Mention the memcached store. Closes #10241 [Josh Susser, Jeremy Kemper]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/session_management.rb

    r7719 r8189  
    1717 
    1818    module ClassMethods 
    19       # Set the session store to be used for keeping the session data between requests. The default is using the 
    20       # file system, but you can also specify one of the other included stores (:active_record_store, :drb_store,  
    21       # :mem_cache_store, or :memory_store) or use your own class. 
     19      # Set the session store to be used for keeping the session data between requests. By default, sessions are stored 
     20      # in browser cookies (:cookie_store), but you can also specify one of the other included stores 
     21      # (:active_record_store, :p_store, drb_store, :mem_cache_store, or :memory_store) or your own custom class. 
    2222      def session_store=(store) 
    2323        ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS[:database_manager] =