Module: IdentityCache

Extended by:
CacheHash
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/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/parent_model_expiration.rb

Defined Under Namespace

Modules: BelongsToCaching, CacheHash, CacheInvalidation, CacheKeyGeneration, ConfigurationDSL, ParentModelExpiration, QueryAPI Classes: AlreadyIncludedError, AssociationError, CacheFetcher, FallbackFetcher, InverseAssociationError, MemoizedCacheProxy

Constant Summary collapse

CACHED_NIL =
:idc_cached_nil
BATCH_SIZE =
1000
DELETED =
:idc_cached_deleted
DELETED_TTL =
1000
VERSION =
"0.2.4"
CACHE_VERSION =
5

Class Attribute Summary collapse

Class Method Summary collapse

Methods included from CacheHash

memcache_hash

Class Attribute Details

.loggerObject



69
70
71
# File 'lib/identity_cache.rb', line 69

def logger
  @logger || Rails.logger
end

.readonlyObject

Returns the value of attribute readonly.



34
35
36
# File 'lib/identity_cache.rb', line 34

def readonly
  @readonly
end

Class Method Details

.cacheObject



65
66
67
# File 'lib/identity_cache.rb', line 65

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



57
58
59
60
61
62
63
# File 'lib/identity_cache.rb', line 57

def cache_backend=(cache_adaptor)
  if @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



89
90
91
92
93
94
95
# File 'lib/identity_cache.rb', line 89

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



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/identity_cache.rb', line 110

def fetch_multi(*keys)
  keys.flatten!(1)
  return {} if keys.size == 0

  result = if should_use_cache?
    fetch_in_batches(keys) 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:



40
41
42
43
44
45
46
47
48
49
# File 'lib/identity_cache.rb', line 40

def included(base) #:nodoc:
  raise AlreadyIncludedError if base.respond_to? :cache_indexes

  base.send(:include, ArTransactionChanges) unless base.include?(ArTransactionChanges)
  base.send(:include, IdentityCache::BelongsToCaching)
  base.send(:include, IdentityCache::CacheKeyGeneration)
  base.send(:include, IdentityCache::ConfigurationDSL)
  base.send(:include, IdentityCache::QueryAPI)
  base.send(:include, IdentityCache::CacheInvalidation)
end

.map_cached_nil_for(value) ⇒ Object



97
98
99
# File 'lib/identity_cache.rb', line 97

def map_cached_nil_for(value)
  value.nil? ? IdentityCache::CACHED_NIL : value
end

.should_fill_cache?Boolean

:nodoc:

Returns:

  • (Boolean)


73
74
75
# File 'lib/identity_cache.rb', line 73

def should_fill_cache? # :nodoc:
  !readonly
end

.should_use_cache?Boolean

:nodoc:

Returns:

  • (Boolean)


77
78
79
80
# File 'lib/identity_cache.rb', line 77

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



101
102
103
# File 'lib/identity_cache.rb', line 101

def unmap_cached_nil_for(value)
  value == IdentityCache::CACHED_NIL ? nil : value
end