# encoding: utf-8 # This writer writes changes directly to the open database. # Use the direct writer only for single process environments # (one single rails app server, e.g. one mongrel). # For multi process environemnts you should use a writer that # processes index changes through a queue. # @author Gernot Kogler module XapianDb module IndexWriters class DirectWriter class << self # Update an object in the index # @param [Object] obj An instance of a class with a blueprint configuration def index(obj) blueprint = XapianDb::DocumentBlueprint.blueprint_for(obj.class) indexer = XapianDb::Indexer.new(XapianDb.database, blueprint) doc = indexer.build_document_for(obj) XapianDb.database.store_doc(doc) XapianDb.database.commit end # Remove an object from the index # @param [String] xapian_id The document id of an object def delete_doc_with(xapian_id) XapianDb.database.delete_doc_with_unique_term xapian_id XapianDb.database.commit end # Reindex all objects of a given class # @param [Class] klass The class to reindex # @param [Hash] options Options for reindexing # @option options [Boolean] :verbose (false) Should the reindexing give status informations? def reindex_class(klass, options={}) opts = {:verbose => false}.merge(options) # First, delete all docs of this class XapianDb.database.delete_docs_of_class(klass) blueprint = XapianDb::DocumentBlueprint.blueprint_for(klass) indexer = XapianDb::Indexer.new(XapianDb.database, blueprint) show_progressbar = false obj_count = klass.count if opts[:verbose] if defined?(ProgressBar) show_progressbar = true end puts "reindexing #{obj_count} objects of #{klass}..." pbar = ProgressBar.new("Status", obj_count) if show_progressbar end # Process the objects in batches to reduce the memory footprint nr_of_batches = (obj_count / 1000) + 1 nr_of_batches.times do |batch| klass.all(:offset => batch * 1000, :limit => 1000, :order => options[:primary_key]).each do |obj| if blueprint.should_index? obj doc = indexer.build_document_for(obj) XapianDb.database.store_doc(doc) else XapianDb.database.delete_doc_with_unique_term(obj.xapian_id) end pbar.inc if show_progressbar end end XapianDb.database.commit true end end end end end