class Solr::Query::Request::Spellcheck::Default

Public Instance Methods

collated?() click to toggle source
# File lib/solr/query/request/spellcheck.rb, line 48
def collated?
  false
end
collated_search_term() click to toggle source
# File lib/solr/query/request/spellcheck.rb, line 46
def collated_search_term; end
disabled?() click to toggle source
# File lib/solr/query/request/spellcheck.rb, line 52
def disabled?
  false
end
previous_search_term() click to toggle source
# File lib/solr/query/request/spellcheck.rb, line 44
def previous_search_term; end
to_h() click to toggle source
# File lib/solr/query/request/spellcheck.rb, line 31
def to_h
  {
    spellcheck: true,
    'spellcheck.dictionary': 'spellcheck',
    'spellcheck.count': 1,
    'spellcheck.collate': true,
    'spellcheck.maxCollations': 1,
    'spellcheck.collateExtendedResults': true,
    'spellcheck.maxCollationTries': 1,
    'spellcheck.onlyMorePopular': true
  }
end