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
2
votes
0 answers

how to use sinhala unicode for suggestions in EditText in android

I'm creating an android app that is totally Sinhala. I want to enable users to type Singlish in the application and suggest related Sinhala letters according to user typed Singlish word. like google input tools does. what's the process to accomplish…
2
votes
0 answers

Here suggest API returns PARSING_ERROR

Since yesterday, our Here API to get place suggestions systematically returns 'PARSING_ERROR'. The status page at here https://status.here.com/status says all is fine, so what can be the problem? Our code, operational in live since weeks: if…
michaelsmith
  • 1,011
  • 1
  • 16
  • 35
2
votes
1 answer

Elasticsearch suggester filter by certain condition

My query as below { "suggest": { "text": "iphame", "0-title": { "phrase": { "field": "title", "query": { "term": { "country_id": 123 } } } }, "1-subtitle": { …
Js Lim
  • 3,625
  • 6
  • 42
  • 80
2
votes
2 answers

How to use Solr Suggester ContextField with boolean field

I am using Solr 6.0.0 I am tring to filter out unwanted suggestions from Solr Suggester. In my Solr database I have all my products My products all have a boolean field "ShowOnSite". Products that are ready for sale have this value set to true.…
Black_bull
  • 65
  • 6
2
votes
0 answers

Is there a way of retrieve Elasticsearch suggest mapping inputs to autocomplete?

firstly I'm new to Elasticsearch so I'm trying to figure out how to build an inteligent autocomplete. So my situation is like this: I have a PostgreSql database which has some real estate offers registries, I've built a service that update those…
2
votes
1 answer

Ravendb. Filter documents considered for suggestions

I would like to use suggest query and filter documents to be considered for suggestions by few fields. Is it even possible? I could not find anything about this in ravendb documentation link to doc I have tried to add my filter conditions to…
Ihor
  • 299
  • 1
  • 11
2
votes
1 answer

Elastic Search word suggestion

We want elastic search to suggest words found within the index. We are using version: 5.6.4. if I type "head" it should suggest "headquarters", a word found in the index. Preferably it should sort the suggestions by occurrence. I have tried several…
Stijn
  • 349
  • 1
  • 19
2
votes
1 answer

How to show OpenSearch suggestions in Safari?

We have a intranet website to search customer details. This website is attempting to implement OpenSearch with the suggestions extension as documented at…
William Entriken
  • 37,208
  • 23
  • 149
  • 195
2
votes
0 answers

Elasticsearch aggregation on results of Suggesters

I'm a beginner in Elasticsearch. I want to aggregate the result of Completion Suggester. There are multi-indices and multiple tags are added on "tags" field like below. Documents GET http://localhost:9200/index1/user-category1/1?pretty { …
Ank
  • 31
  • 5
2
votes
1 answer

How can I make Autocomplete or suggestions with JavaScript while user search for something?

I made this in HTML and Java script And need to make a suggestions dropdown menu appears when the user writes first letter of the word he searches for How can I make this?
2
votes
1 answer

Input box in react to show suggestions in reactjs

How to make an input box which will give suggestion with small delay not on every character input fast. I don't want to hit suggestion api on every char input. class Input extends React.Component { constructor (props){ super(props); this.state…
Rizvan
  • 521
  • 1
  • 7
  • 20
2
votes
1 answer

Solr suggester returns many times the same results, with empty weights

I have the following problem with Solr's suggester: it's returning many times the same value, and all weights are zero. I would hope it would return each value only one time, with weights according to the frequency. This is my config: …
Yann
  • 1,019
  • 1
  • 8
  • 18
2
votes
1 answer

Solr Suggest not working

I am trying to implement auto suggest feature using Solr 6.6 and Spring Boot on the product_name field. I am giving following records in the core. {"id":"xsku2023","type":"0","name":"Retro Lamp","product_id":"xprod2023","product_name":"Bajaj…
Narendra Jaggi
  • 1,297
  • 11
  • 33
2
votes
1 answer

Elasticsearch SuggestResponse wrong on string with number

I've build an Auto-complete service with Elasticsearch 2.x.x. and one of my auto-completable values is "3M". I've configured the fuzziness to AUTO and my mapping is just default: "mapping": { "type": "completion", "analyzer": "simple", …
2
votes
2 answers

How good is to use Elasitc search Prefix query with respect to performance?

I am planning to maintain search history of users by indexing each search text as a document in elastic search. I thought of using a Prefix query to get list of Suggestions for the users. along with the prefix query i have used an Multimatch query…