Module: Paquito::CacheEntryCoder
- Defined in:
- lib/paquito/cache_entry_coder.rb
Class Method Summary collapse
Class Method Details
.dump(entry) ⇒ Object
7 8 9 |
# File 'lib/paquito/cache_entry_coder.rb', line 7 def self.dump(entry) entry.pack end |
.load(payload) ⇒ Object
11 12 13 |
# File 'lib/paquito/cache_entry_coder.rb', line 11 def self.load(payload) ::ActiveSupport::Cache::Entry.unpack(payload) end |