Sha256: 1440ad4d308fe01303afe5187f2590a79e658f57ec46e4b8186eaf9a6540b909
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 KB
Contents
# encoding: utf-8 # module Indexed # :nodoc:all # # module Bundle # This is the _actual_ index (based on memory). # # Handles exact/partial index, weights index, and similarity index. # # Delegates file handling and checking to an *Indexed*::*Files* object. # class Memory < Base delegate :[], :to => :configuration def initialize name, configuration, *args super name, configuration, *args @configuration = {} # A hash with config options. @backend = Backend::Files.new name, configuration end def to_s <<-MEMORY Memory #{@backend.indented_to_s} MEMORY end # Get the ids for the given symbol. # def ids sym @index[sym] || [] end # Get a weight for the given symbol. # def weight sym @weights[sym] end # Loads the core index. # def load_index self.index = @backend.load_index end # Loads the weights index. # def load_weights self.weights = @backend.load_weights end # Loads the similarity index. # def load_similarity self.similarity = @backend.load_similarity end # Loads the configuration. # def load_configuration self.configuration = @backend.load_configuration end # Loads the core index. # def clear_index self.index = {} end # Loads the weights index. # def clear_weights self.weights = {} end # Loads the similarity index. # def clear_similarity self.similarity = {} end # Loads the configuration. # def clear_configuration self.configuration = {} end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
picky-2.6.0 | lib/picky/indexed/bundle/memory.rb |