class Lit::HashStorage

Public Instance Methods

incr(key) click to toggle source
# File lib/lit/adapters/hash_storage.rb, line 3
def incr(key)
  self[key] ||= 0
  self[key] += 1
end
prefix() click to toggle source
# File lib/lit/adapters/hash_storage.rb, line 8
def prefix
  nil
end