Sha256: 41a64999631bbfffc01a99d6ab7192a949c622c069ebe8fe636f60c47451d71a

Contents?: true

Size: 422 Bytes

Versions: 1

Compression:

Stored size: 422 Bytes

Contents

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

  module Bundle

    # The memory version dumps its generated indexes to disk
    # (mostly JSON) to load them into memory on startup.
    #
    class Memory < Base

      # We're using files for the memory backend.
      # E.g. dump writes files.
      #
      alias backend files

      def to_s
        "Memory\n#{@backend.indented_to_s}"
      end

    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
picky-2.6.0 lib/picky/indexing/bundle/memory.rb