Questions tagged [search-suggestion]

A search suggestion can be made by a search engine when it discovers that the enduser entered poor or unknown keywords. The search engine will then suggest better keywords as in "Don't you mean [keywords]?".

314 questions
1
vote
1 answer

Elastic search paginating on multiple types in an index

I have an index with multiple types like below : songs books movies I am building an API for suggesting indexed items grouped by their type, The problem is that I want a size functionality inside each aggregation, Just like the completion…
1
vote
1 answer

ElasticSearch: Attempting to get spelling suggestion on proper names

Before I begin, let me just say that I'm no ElasticSearch expert, but I am currently tasked with tweaking some analyzers to get spelling suggestions working better in a couple of different situations. I've seen examples of people who are doing…
Cari
  • 997
  • 1
  • 10
  • 16
1
vote
2 answers

Search suggestion box: each row has a white background and white text

Any idea's on how to change the style for the suggestion box? I'm targeting sdk version 16. I tryed defining a style for the searchview(reference: android-developers.blogspot.be/2014/10/appcompat-v21-material-design-for-pre.html) with a…
1
vote
0 answers

Solr How to sorting suggestions by sales

We are trying to use solr on our website as a search engine , but we have a problem , we can not sort the suggestions by the number of sales. I tried the components Facet, Terms, FreeTextLookupFactory and the spellcheck component, but in none of…
Elson
  • 11
  • 3
1
vote
0 answers

How to configure Solr suggester?

In solrconfig.xml, Added a search component as below, suggest FSTLookupFactory
1
vote
1 answer

Custom ContentProvider suggestions not displaying

My goal: Implementing search within an application. How it should work: I have multiple activities which have a SearchView within their Action Bar (or Toolbar as they now call it), and a dedicated Search activity. I want to be able to input text…
1
vote
0 answers

Need to retrieve top N-suggestions of a word in Solr

I want to retrieve top N-suggestions of a word from Solr. I need most relevant suggestions of a word. Example : Suppose if I type "peace" then order of suggestions will be in - piece, perce, place etc. Right now the configuration ofschema.xml and…
iNikkz
  • 3,729
  • 5
  • 29
  • 59
1
vote
3 answers

EdgeNGramFilterFactory is not working fine in solr

I am trying solr.EdgeNGramFilterFactory in solr which is explained here I have added in the index analayzer in the fieldType of schema.xml. As I know,…
iNikkz
  • 3,729
  • 5
  • 29
  • 59
1
vote
0 answers

Getting most likely documents of the query using phonetic filter in solr

I am using solr for spell checking/ query correction. I have added solr.PhoneticFilterFactory and solr.NGramFilterFactory in fieldType to perform spell checking. It is working fine but here the problem is that I am getting number of documents of the…
iNikkz
  • 3,729
  • 5
  • 29
  • 59
1
vote
1 answer

Autocomplete for phrases solrj

I am trying to add autocomplete feature for the phrase queries. Have the following configuration - in schema.xml file
Gauri Dani
  • 11
  • 1
1
vote
0 answers

Elastic search suggester and search autocompleter mechanism

I'm researching search engine mechanism and want to implement basic search engine using elastic search. I have 80.000 index document in test elasticsearch cluster. I read elasticsearch tutorial of suggesters and this article . In this article says…
Haktan Aydın
  • 581
  • 1
  • 6
  • 21
1
vote
1 answer

How to add new words to android user dictionary so that they would appear on candidates view while typing

I have searched and looked into this issue all over the web but did not get a clear answer. I have added the words to the user dictionary using content provider as the android documentation states the words gets added but after that when i type onto…
1
vote
1 answer

Using Nest Phrase Suggester on MultiSearch query

I have a MultiSearch query over multiple types with multiple fields per type. I see that I can add a .SuggestPhrase() to an individual SearchDescriptor on an individual field, but not to an entire search query. How can I apply a Phrase suggestion…
Brandon
  • 1,058
  • 1
  • 18
  • 42
1
vote
1 answer

Fuzzy compare with weighted fields (suggest similar instances)

Today I came across a certain task and enjoyed solving it with a clean code, so decided it'd be cool to share it with the rest of the class - but hey, lets keep it in the format of a question. The task: Given an instance of type T (source) and a…
SimpleVar
  • 14,044
  • 4
  • 38
  • 60
1
vote
2 answers

Solr Suggester for Impl Class AnalyzingInfixLookupFactory

I'm having a problem using Solr's suggest component, the implementation class that I want to use is AnalyzingInfixLookupFactory, I'm using this to get suggestions based on infix not only the prefix. Also I needed Solr to see the search term as one…
Ahmed
  • 49
  • 2
  • 9