Changeset 7725
- Timestamp:
- 10/03/07 14:52:56 (1 year ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/caching.rb (modified) (1 diff)
- trunk/actionpack/lib/action_controller/session/mem_cache_store.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r7724 r7725 1 1 *SVN* 2 3 * Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores. Closes #8662. [Rick] 2 4 3 5 * Move ActionController::Routing.optimise_named_routes to ActionController::Base.optimise_named_routes. Now you can set it in the config. [Rick] trunk/actionpack/lib/action_controller/caching.rb
r7719 r7725 486 486 end 487 487 488 require_library_or_gem 'memcache' 488 489 class MemCacheStore < MemoryStore #:nodoc: 489 490 attr_reader :addresses trunk/actionpack/lib/action_controller/session/mem_cache_store.rb
r5512 r7725 10 10 begin 11 11 require 'cgi/session' 12 require 'memcache'12 require_library_or_gem 'memcache' 13 13 14 14 class CGI