Class: ROM::Cache::Namespaced Private
- Inherits:
-
Object
- Object
- ROM::Cache::Namespaced
- Defined in:
- lib/rom/cache.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #cache ⇒ Object readonly private
- #namespace ⇒ Object readonly private
Instance Method Summary collapse
- #[](key) ⇒ Object private
- #fetch_or_store(*args) ⇒ Object private
-
#initialize(cache, namespace) ⇒ Namespaced
constructor
private
A new instance of Namespaced.
- #inspect ⇒ Object private
- #size ⇒ Object private
Constructor Details
#initialize(cache, namespace) ⇒ Namespaced
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Namespaced.
21 22 23 24 |
# File 'lib/rom/cache.rb', line 21 def initialize(cache, namespace) @cache = cache @namespace = namespace.to_sym end |
Instance Attribute Details
#cache ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/rom/cache.rb', line 15 def cache @cache end |
#namespace ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
18 19 20 |
# File 'lib/rom/cache.rb', line 18 def namespace @namespace end |
Instance Method Details
#[](key) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
27 |
# File 'lib/rom/cache.rb', line 27 def [](key) = cache[[namespace, key].hash] |
#fetch_or_store(*args) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
30 31 32 |
# File 'lib/rom/cache.rb', line 30 def fetch_or_store(*args, &) cache.fetch_or_store([namespace, args].hash, &) end |
#inspect ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
38 |
# File 'lib/rom/cache.rb', line 38 def inspect = %(#<#{self.class} size=#{size}>) |
#size ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 |
# File 'lib/rom/cache.rb', line 35 def size = cache.size |