Sha256: ad99c5fd7ebaae5a5bb732590d04e5d595f2a131f8a10faf5757760901170488

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

module Counter
  module Cache
    class Config
      # TODO:: Confer with paul/kig about adapting the counting data store
      attr_accessor :default_worker_adapter, :recalculation_delay, :redis_pool, :counting_data_store

      def initialize
        self.counting_data_store = Counter::Cache::Redis.new
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
counter-cache-0.3.0 lib/counter/cache/config.rb
counter-cache-0.2.0 lib/counter/cache/config.rb
counter-cache-0.1.0 lib/counter/cache/config.rb
counter-cache-0.0.2 lib/counter/cache/config.rb
counter-cache-0.0.1 lib/counter/cache/config.rb