Method: Web::MemoryCache#get
- Defined in:
- lib/web/cache/memory_cache.rb
#get(key) ⇒ Object
10 11 12 13 |
# File 'lib/web/cache/memory_cache.rb', line 10 def get(key) expires = @expirations[key] @hash[key] if expires.nil? || Time.now < expires end |