Sha256: c22c2560327ef7c057bbad349533be480b7e4ff1e98ca873f617941d6ddfccf1

Contents?: true

Size: 368 Bytes

Versions: 2

Compression:

Stored size: 368 Bytes

Contents

# encoding: utf-8
#
module Indexing # :nodoc:all

  module Bundle

    # The Redis version dumps its generated indexes to
    # the Redis backend.
    #
    class Redis < Base

      attr_reader :backend

      def initialize name, category, *args
        super name, category, *args

        @backend = Backend::Redis.new name, category
      end

    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
picky-2.7.0 lib/picky/indexing/bundle/redis.rb
picky-2.6.0 lib/picky/indexing/bundle/redis.rb