class Rack::Identicon::Caching::NullCacheStore

Public Instance Methods

exist?(key) click to toggle source
# File lib/rack/identicon/caching.rb, line 13
def exist? key
  false
end
fetch(key) { || ... } click to toggle source
# File lib/rack/identicon/caching.rb, line 23
def fetch key
  yield
end
read(key) click to toggle source
# File lib/rack/identicon/caching.rb, line 17
def read key
end
write(key, data) click to toggle source
# File lib/rack/identicon/caching.rb, line 20
def write key, data
end