Class: ROM::Cache::Namespaced Private
- Inherits:
-
Object
- Object
- ROM::Cache::Namespaced
- Defined in:
- core/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, &block) ⇒ 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 'core/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 'core/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 'core/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 28 29 |
# File 'core/lib/rom/cache.rb', line 27 def [](key) cache[[namespace, key].hash] end |
#fetch_or_store(*args, &block) ⇒ 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.
32 33 34 |
# File 'core/lib/rom/cache.rb', line 32 def fetch_or_store(*args, &block) cache.fetch_or_store([namespace, args.hash].hash, &block) 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.
42 43 44 |
# File 'core/lib/rom/cache.rb', line 42 def inspect %(#<#{self.class} size=#{size}>) end |
#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.
37 38 39 |
# File 'core/lib/rom/cache.rb', line 37 def size cache.size end |