Simplistic in-memory cache
37 38 39
# File 'lib/story_teller/persistence.rb', line 37 def get(key) self[key] end
40 41 42
# File 'lib/story_teller/persistence.rb', line 40 def set(key, value, _ttl) self[key] = value end