Class: RDF::Util::Cache::WeakRefCache
- Inherits:
-
RDF::Util::Cache
- Object
- RDF::Util::Cache
- RDF::Util::Cache::WeakRefCache
- Defined in:
- lib/rdf/util/cache.rb
Overview
This implementation uses the ‘WeakRef` class from Ruby’s standard library, and provides adequate performance on JRuby and on Ruby 2.x.
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(key, value) ⇒ Object
-
#delete(key) ⇒ Object
Remove cache entry for key.
-
#initialize(capacity = -1)) ⇒ WeakRefCache
constructor
A new instance of WeakRefCache.
Methods inherited from RDF::Util::Cache
Constructor Details
#initialize(capacity = -1)) ⇒ WeakRefCache
Returns a new instance of WeakRefCache.
109 110 111 112 |
# File 'lib/rdf/util/cache.rb', line 109 def initialize(capacity = -1) require 'weakref' unless defined?(::WeakRef) super end |
Instance Method Details
#[](key) ⇒ Object
117 118 119 120 121 122 123 124 125 126 |
# File 'lib/rdf/util/cache.rb', line 117 def [](key) if (ref = @cache[key]) if ref.weakref_alive? value = ref.__getobj__ rescue nil else @cache.delete(key) nil end end end |
#[]=(key, value) ⇒ Object
132 133 134 135 136 137 |
# File 'lib/rdf/util/cache.rb', line 132 def []=(key, value) if has_capacity? @cache[key] = WeakRef.new(value) end value end |
#delete(key) ⇒ Object
Remove cache entry for key
144 145 146 147 |
# File 'lib/rdf/util/cache.rb', line 144 def delete(key) ref = @cache.delete(key) ref.__getobj__ rescue nil end |