Module: AnyCache::Drivers::ActiveSupportMemCacheStore Private

Defined in:
lib/any_cache/drivers/active_support_mem_cache_store.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Since:

  • 0.2.0

Class Method Summary collapse

Class Method Details

.build(settings) ⇒ ::ActiveSupport::Cache::MemCacheStore

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.

Parameters:

  • settings (Qonfig:Settings)

Returns:

  • (::ActiveSupport::Cache::MemCacheStore)

Since:

  • 0.2.0



21
22
23
# File 'lib/any_cache/drivers/active_support_mem_cache_store.rb', line 21

def build(settings)
  ::ActiveSupport::Cache::MemCacheStore.new([Array(settings.servers), settings.options])
end

.supported_source?(driver) ⇒ Boolean

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.

Parameters:

  • driver (::ActiveSupport::Cache::MemCacheStore)

Returns:

  • (Boolean)

Since:

  • 0.2.0



10
11
12
13
14
# File 'lib/any_cache/drivers/active_support_mem_cache_store.rb', line 10

def supported_source?(driver)
  defined?(::Dalli) &&
  defined?(::ActiveSupport::Cache::MemCacheStore) &&
  driver.is_a?(::ActiveSupport::Cache::MemCacheStore)
end