Changeset 7726
- Timestamp:
- 10/03/07 16:15:42 (1 year ago)
- Files:
-
- trunk/actionpack/lib/action_controller/caching.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/caching.rb
r7725 r7726 486 486 end 487 487 488 begin 488 489 require_library_or_gem 'memcache' 489 490 class MemCacheStore < MemoryStore #:nodoc: … … 498 499 end 499 500 end 501 rescue LoadError 502 # MemCache wasn't available so neither can the store be 503 end 500 504 501 505 class UnthreadedFileStore #:nodoc: