Class: Solr::Request::Dismax

Inherits:
Standard show all
Defined in:
lib/solr/request/dismax.rb

Overview

The ASF licenses this file to You under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Constant Summary

Constants inherited from Standard

Standard::VALID_PARAMS

Instance Attribute Summary

Attributes inherited from Select

#query_type

Instance Method Summary collapse

Methods inherited from Select

#content_type, #handler, #response_format, #to_s

Methods inherited from Base

#content_type, #handler, #response_format

Constructor Details

#initialize(params) ⇒ Dismax

Returns a new instance of Dismax.



18
19
20
21
22
23
24
25
# File 'lib/solr/request/dismax.rb', line 18

def initialize(params)
  @alternate_query = params.delete(:alternate_query)
  @sort_values = params.delete(:sort)
  
  super
  
  @query_type = "dismax"
end

Instance Method Details

#to_hashObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/solr/request/dismax.rb', line 27

def to_hash
  hash = super
  hash[:tie] = @params[:tie_breaker]
  hash[:mm]  = @params[:minimum_match]
  hash[:qf]  = @params[:query_fields]
  hash[:pf]  = @params[:phrase_fields]
  hash[:ps]  = @params[:phrase_slop]
  hash[:bq]  = @params[:boost_query]
  hash[:bf]  = @params[:boost_functions]
  hash["q.alt"] = @alternate_query
  # FIXME: 2007-02-13 <[email protected]> --  This code is duplicated in
  # Solr::Request::Standard. It should be refactored into a single location.
  hash[:sort] = @sort_values.collect do |sort|
    key = sort.keys[0]
    "#{key.to_s} #{sort[key] == :descending ? 'desc' : 'asc'}"
  end.join(',') if @sort_values
  return hash
end