Changeset 8446
- Timestamp:
- 12/19/07 23:25:25 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2-1-caching/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
r8444 r8446 4 4 def read(name, options = {}) 5 5 if value = super(name, options.merge(:raw => true)) 6 ActiveSupport::GZip.decompress(Marshal.load(value))6 Marshal.load(ActiveSupport::GZip.decompress(value)) 7 7 end 8 8 end