Sha256: 183d8ddda7a1bdb7d1389a89c0b37668887b8355ea8d1b52a4bf3b0272a2d4f6

Contents?: true

Size: 1.5 KB

Versions: 10

Compression:

Stored size: 1.5 KB

Contents

module Picky

  class Category

    # Removes an indexed object with the
    # given id.
    #
    def remove id
      id = id.send key_format
      exact.remove id
      partial.remove id
    end

    # Adds and indexes this category of the
    # given object.
    #
    def add object, where = :unshift
      tokens, _ = tokenizer.tokenize object.send(from)
      add_tokenized object.id, tokens, where
    end

    # Removes the object's id, and then
    # adds it again.
    #
    def replace object, where = :unshift
      remove object.id
      add object, where
    end

    # Add at the end.
    #
    def << thing
      add thing, __method__
    end

    # Add at the beginning.
    #
    def unshift thing
      add thing, __method__
    end

    # For the given id, adds the list of
    # strings to the index for the given id.
    #
    def add_tokenized id, tokens, where = :unshift
      tokens.each { |text| add_tokenized_token id, text, where }
    end

    #
    #
    def add_tokenized_token id, text, where = :unshift
      return unless text
      id = id.send key_format # TODO Speed this up!

      # text = text.to_sym if @symbols # TODO Symbols.
      exact.add id, text, where
      partial.add_partialized id, text, where
    end

    # Clears the realtime mapping.
    #
    def clear_realtime
      exact.clear_realtime
      partial.clear_realtime
    end

    # Builds the realtime mapping.
    #
    def build_realtime_mapping
      exact.build_realtime
      partial.build_realtime
    end

  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
picky-4.0.0pre1 lib/picky/category_realtime.rb
picky-3.6.16 lib/picky/category_realtime.rb
picky-3.6.15 lib/picky/category_realtime.rb
picky-3.6.14 lib/picky/category_realtime.rb
picky-3.6.13 lib/picky/category_realtime.rb
picky-3.6.12 lib/picky/category_realtime.rb
picky-3.6.11 lib/picky/category_realtime.rb
picky-3.6.10 lib/picky/category_realtime.rb
picky-3.6.9 lib/picky/category_realtime.rb
picky-3.6.8 lib/picky/category_realtime.rb