class Sequel::Plugins::Cacheable::MemcacheDriver

Public Instance Methods

del(key) click to toggle source
# File lib/sequel-cacheable/driver/memcache.rb, line 4
def del(key)
  @store.delete(key)

  return nil
end
expire(key, time) click to toggle source
# File lib/sequel-cacheable/driver/memcache.rb, line 10
def expire(key, time)
  @store.set(key, @store.get(key), time)
end