module ActiverecordReindex

author: Vadim Shaveiko <@vshaveyko> Abstract adapter class New adapters should implement :_single_reindex and :_mass_reindex methods that will perform reindexing of the given records

author: Vadim Shaveiko <@vshaveyko> helpers for reindexing all required reflections on record’s class

author: Vadim Shaveiko <@vshaveyko>

author: Vadim Shaveiko <@vshaveyko>

author: Vadim Shaveiko <@vshaveyko>

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/activerecord_reindex.rb, line 36
def config
  @_configuration ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/activerecord_reindex.rb, line 32
def configure
  yield config
end
reset_configuration() click to toggle source
# File lib/activerecord_reindex.rb, line 40
def reset_configuration
  @_configuration = nil
end