Method: Cache#get
- Defined in:
- lib/cache.rb
#get(k, ignored_options = nil) ⇒ Object Also known as: read
Get a value.
Example:
cache.get 'hello'
54 55 56 57 |
# File 'lib/cache.rb', line 54 def get(k, = nil) handle_fork _get k end |