class Plyushkin::Cache::RailsCache

Public Instance Methods

read(key) click to toggle source
# File lib/plyushkin/cache/rails_cache.rb, line 2
def read(key)
  Rails.cache.read(key)
end
write(key, value) click to toggle source
# File lib/plyushkin/cache/rails_cache.rb, line 6
def write(key, value)
  Rails.cache.write(key, value)
end