Sha256: 430b2668ea807ed867b9bb8b4e1dd28f92c4a52de742da11e81d9b5c5f3c0301

Contents?: true

Size: 1.66 KB

Versions: 2

Compression:

Stored size: 1.66 KB

Contents

# 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.

class Solr::Request::Dismax < Solr::Request::Standard

  VALID_PARAMS.replace(VALID_PARAMS + [:tie_breaker, :query_fields, :minimum_match, :phrase_fields, :phrase_slop,
                                       :boost_query, :boost_functions])

  def initialize(params)
    @alternate_query = params.delete(:alternate_query)
    @sort_values = params.delete(:sort)
    
    super(params)
    
    @query_type = "dismax"
  end
  
  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 <coda.hale@gmail.com> --  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

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solr-ruby-0.0.2 lib/solr/request/dismax.rb
solr-ruby-0.0.3 lib/solr/request/dismax.rb