Sha256: c8b1c2995a6afc83d3793bb8eda859893b5409d44483eceecf11a43a4a819f68
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
Contents
# frozen_string_literal: true module Elasticity class MultiSearch def initialize(msearch_args = {}) @results = {} @searches = {} @mappers = {} @msearch_args = msearch_args yield self if block_given? end def add(name, search, documents: nil, active_records: nil) if !documents.nil? && !active_records.nil? raise ArgumentError, "you can only pass either :documents or :active_records as an option" elsif documents.nil? && active_records.nil? raise ArgumentError, "you need to provide either :documents or :active_records as an option" end @searches[name] = { search_definition: search.search_definition, documents: documents, active_records: active_records } name end def [](name) @results[name] ||= result_for(name) end private def result_for(name) search = @searches[name] return if search.nil? query_response = response_for(@searches.keys.index(name)) MultiSearchResponseParser.parse(query_response, search) end def response_for(index) @response ||= ActiveSupport::Notifications.instrument("multi_search.elasticity", args: { body: bodies }) do args = { body: bodies.map(&:dup) }.reverse_merge(@msearch_args) Elasticity.config.client.msearch(args) end @response["responses"][index] end def bodies @bodies ||= @searches.values.map do |hsh| hsh[:search_definition].to_msearch_args end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
es-elasticity-1.0.0 | lib/elasticity/multi_search.rb |
es-elasticity-1.0.0.jhumphreys | lib/elasticity/multi_search.rb |