Class: RailsFastCache::WriteJob

Inherits:
NonSerializingJob show all
Defined in:
lib/rails-fast-cache/write_job.rb

Instance Method Summary collapse

Methods inherited from NonSerializingJob

#deserialize_arguments, #serialize_arguments

Instance Method Details

#perform(cache_store, name, value, options) ⇒ Object



7
8
9
# File 'lib/rails-fast-cache/write_job.rb', line 7

def perform(cache_store, name, value, options)
  cache_store.write(name, value, options)
end