module Elasticsearch::Model::Adapter::Default::Importing

Module for efficiently fetching records from the database to import them into the index

Public Instance Methods

__find_in_batches(options={}, &block) click to toggle source

@abstract Implement this method in your adapter

# File lib/elasticsearch/model/adapters/default.rb, line 53
def __find_in_batches(options={}, &block)
  raise NotImplemented, "Method not implemented for default adapter"
end
__transform() click to toggle source

@abstract Implement this method in your adapter

# File lib/elasticsearch/model/adapters/default.rb, line 59
def __transform
  raise NotImplemented, "Method not implemented for default adapter"
end