Module: RestCore::RailsUtilUtil::Cache
- Defined in:
- lib/rest-core/util/rails_util_util.rb
Instance Method Summary collapse
Instance Method Details
#[](key) ⇒ Object
5 |
# File 'lib/rest-core/util/rails_util_util.rb', line 5 def [] key ; read(key) ; end |
#[]=(key, value) ⇒ Object
6 |
# File 'lib/rest-core/util/rails_util_util.rb', line 6 def []= key, value; write(key, value) ; end |
#store(key, value, options = {}) ⇒ Object
7 8 |
# File 'lib/rest-core/util/rails_util_util.rb', line 7 def store key, value, ={}; write(key, value, ); end |