Module: IdentityCache
- Extended by:
- ActiveSupport::Concern, CacheHash
- Includes:
- ArTransactionChanges, BelongsToCaching, CacheInvalidation, CacheKeyGeneration, ConfigurationDSL, ParentModelExpiration, QueryAPI, ShouldUseCache
- Defined in:
- lib/identity_cache.rb,
lib/identity_cache/version.rb,
lib/identity_cache/query_api.rb,
lib/identity_cache/cache_hash.rb,
lib/identity_cache/cache_fetcher.rb,
lib/identity_cache/fallback_fetcher.rb,
lib/identity_cache/should_use_cache.rb,
lib/identity_cache/configuration_dsl.rb,
lib/identity_cache/belongs_to_caching.rb,
lib/identity_cache/cache_invalidation.rb,
lib/identity_cache/cache_key_generation.rb,
lib/identity_cache/memoized_cache_proxy.rb,
lib/identity_cache/without_primary_index.rb,
lib/identity_cache/parent_model_expiration.rb
Defined Under Namespace
Modules: BelongsToCaching, CacheHash, CacheInvalidation, CacheKeyGeneration, ConfigurationDSL, ParentModelExpiration, QueryAPI, ShouldUseCache, WithoutPrimaryIndex Classes: AlreadyIncludedError, AssociationError, CacheFetcher, DerivedModelError, FallbackFetcher, InverseAssociationError, MemoizedCacheProxy, UnsupportedAssociationError, UnsupportedScopeError
Constant Summary collapse
- CACHED_NIL =
:idc_cached_nil- BATCH_SIZE =
1000- DELETED =
:idc_cached_deleted- DELETED_TTL =
1000- VERSION =
"0.4.1"- CACHE_VERSION =
6
Constants included from CacheInvalidation
CacheInvalidation::CACHE_KEY_NAMES
Constants included from CacheKeyGeneration
CacheKeyGeneration::DEFAULT_NAMESPACE
Class Attribute Summary collapse
- .logger ⇒ Object
-
.readonly ⇒ Object
Returns the value of attribute readonly.
Class Method Summary collapse
- .cache ⇒ Object
-
.cache_backend=(cache_adaptor) ⇒ Object
Sets the cache adaptor IdentityCache will be using.
-
.fetch(key) ⇒ Object
Cache retrieval and miss resolver primitive; given a key it will try to retrieve the associated value from the cache otherwise it will return the value of the execution of the block.
-
.fetch_multi(*keys) ⇒ Object
Same as
fetch, except that it will try a collection of keys, using the multiget operation of the cache adaptor. -
.included(base) ⇒ Object
:nodoc:.
- .map_cached_nil_for(value) ⇒ Object
-
.should_fill_cache? ⇒ Boolean
:nodoc:.
-
.should_use_cache? ⇒ Boolean
:nodoc:.
- .unmap_cached_nil_for(value) ⇒ Object
- .with_fetch_read_only_records(value = true) ⇒ Object
- .with_never_set_inverse_association(value = true) ⇒ Object
Methods included from CacheHash
Methods included from ParentModelExpiration
#add_parents_to_cache_expiry_set, #add_record_to_cache_expiry_set, #expire_parent_caches, #parents_to_expire_on_changes, #should_expire_identity_cache_parent?
Methods included from CacheInvalidation
Methods included from CacheKeyGeneration
#attribute_cache_key_for_attribute_and_current_values, #attribute_cache_key_for_attribute_and_previous_values, #current_values_for_fields, denormalized_schema_hash, #old_values_for_fields, #primary_cache_index_key, schema_to_string
Class Attribute Details
.logger ⇒ Object
95 96 97 |
# File 'lib/identity_cache.rb', line 95 def logger @logger || Rails.logger end |
.readonly ⇒ Object
Returns the value of attribute readonly.
50 51 52 |
# File 'lib/identity_cache.rb', line 50 def readonly @readonly end |
Class Method Details
.cache ⇒ Object
91 92 93 |
# File 'lib/identity_cache.rb', line 91 def cache @cache ||= MemoizedCacheProxy.new end |
.cache_backend=(cache_adaptor) ⇒ Object
Sets the cache adaptor IdentityCache will be using
Parameters
cache_adaptor - A ActiveSupport::Cache::Store
83 84 85 86 87 88 89 |
# File 'lib/identity_cache.rb', line 83 def cache_backend=(cache_adaptor) if defined?(@cache) cache.cache_backend = cache_adaptor else @cache = MemoizedCacheProxy.new(cache_adaptor) end end |
.fetch(key) ⇒ Object
Cache retrieval and miss resolver primitive; given a key it will try to retrieve the associated value from the cache otherwise it will return the value of the execution of the block.
Parameters
key A cache key string
115 116 117 118 119 120 121 |
# File 'lib/identity_cache.rb', line 115 def fetch(key) if should_use_cache? unmap_cached_nil_for(cache.fetch(key) { map_cached_nil_for yield }) else yield end end |
.fetch_multi(*keys) ⇒ Object
Same as fetch, except that it will try a collection of keys, using the multiget operation of the cache adaptor.
Parameters
keys A collection or array of key strings
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/identity_cache.rb', line 136 def fetch_multi(*keys) keys.flatten!(1) return {} if keys.size == 0 result = if should_use_cache? fetch_in_batches(keys.uniq) do |missed_keys| results = yield missed_keys results.map {|e| map_cached_nil_for e } end else results = yield keys Hash[keys.zip(results)] end result.each do |key, value| result[key] = unmap_cached_nil_for(value) end result end |
.included(base) ⇒ Object
:nodoc:
70 71 72 73 74 75 |
# File 'lib/identity_cache.rb', line 70 def included(base) #:nodoc: raise AlreadyIncludedError if base.respond_to?(:cached_model) base.class_attribute :cached_model base.cached_model = base super end |
.map_cached_nil_for(value) ⇒ Object
123 124 125 |
# File 'lib/identity_cache.rb', line 123 def map_cached_nil_for(value) value.nil? ? IdentityCache::CACHED_NIL : value end |
.should_fill_cache? ⇒ Boolean
:nodoc:
99 100 101 |
# File 'lib/identity_cache.rb', line 99 def should_fill_cache? # :nodoc: !readonly end |
.should_use_cache? ⇒ Boolean
:nodoc:
103 104 105 106 |
# File 'lib/identity_cache.rb', line 103 def should_use_cache? # :nodoc: pool = ActiveRecord::Base.connection_pool !pool.active_connection? || pool.connection.open_transactions == 0 end |
.unmap_cached_nil_for(value) ⇒ Object
127 128 129 |
# File 'lib/identity_cache.rb', line 127 def unmap_cached_nil_for(value) value == IdentityCache::CACHED_NIL ? nil : value end |
.with_fetch_read_only_records(value = true) ⇒ Object
166 167 168 169 170 171 172 |
# File 'lib/identity_cache.rb', line 166 def with_fetch_read_only_records(value = true) old_value = self.fetch_read_only_records self.fetch_read_only_records = value yield ensure self.fetch_read_only_records = old_value end |
.with_never_set_inverse_association(value = true) ⇒ Object
157 158 159 160 161 162 163 |
# File 'lib/identity_cache.rb', line 157 def with_never_set_inverse_association(value = true) old_value = self.never_set_inverse_association self.never_set_inverse_association = value yield ensure self.never_set_inverse_association = old_value end |