Class: ROM::Cache::Namespaced Private

Inherits:
Object
  • Object
show all
Defined in:
lib/rom/cache.rb

Overview

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.

API:

  • private

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

API:

  • private



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

#cacheObject (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.

API:

  • private



15
16
17
# File 'lib/rom/cache.rb', line 15

def cache
  @cache
end

#namespaceObject (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.

API:

  • private



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.

API:

  • private



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.

API:

  • private



30
31
32
# File 'lib/rom/cache.rb', line 30

def fetch_or_store(*args, &)
  cache.fetch_or_store([namespace, args].hash, &)
end

#inspectObject

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.

API:

  • private



38
# File 'lib/rom/cache.rb', line 38

def inspect = %(#<#{self.class} size=#{size}>)

#sizeObject

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.

API:

  • private



35
# File 'lib/rom/cache.rb', line 35

def size = cache.size