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]?".
Questions tagged [search-suggestion]
314 questions
0
votes
1 answer
More search suggestions with Elasticsearch
I'm building a small vertical search engine using Elasticsearch as the indexer and Nutch as the crawler. I was using the HTML title field to build search suggestions for ES using an edge n gram strategy, thinking that the title field would be good…

user3125823
- 1,846
- 2
- 18
- 46
0
votes
1 answer
Phrase Suggest elasticsearch
I am having an issue to return a good suggestion on misspelled Ngrams.
Lets me explain in details.
Consider the following mapping with a shingle filter on 'title' field:
PUT _template/test_news_flo
{
"template": "test_articles_flo",
"settings": {
…

Florent Valdelievre
- 1,546
- 3
- 20
- 32
0
votes
1 answer
Building a recommendation system for comparing similarity between strings
I am building an android app for registering user complaints for any specific government related issue. I would like to make the complaints unique without any ambiguity in my database. I am using php and mysql database. I would like to match the…

vicky
- 21
- 1
- 2
0
votes
1 answer
Android how to replace soft keyboard hints with searchview custom suggestions?
Situation
I have a searchview where the user can search for an item located in a local sqlitedatabase and a list of suggestions will pop up while the user is typing. I do this using a MatrixCursor, the support library's SimpleCursorAdapter, and…

Kevin.Lam
- 289
- 1
- 4
- 16
0
votes
1 answer
Manually trigger a suggestion click in SearchView in Android
How do I trigger an event that would have been triggered if I would have clicked on one of the suggestions of my SearchView on Android?
I need the system to call the very exact intent along with the passed parameters.
Is it possible?

Sid
- 1,270
- 2
- 15
- 30
0
votes
1 answer
Umlaut in Elastic Suggesters
I am currently trying to set up a suggester similar to the google misspelling correction. I am using the Elastic Suggesters with the following query:
{
"query": {
"match": {
"name": "iphone hüle"
}
},
"suggest": {
…

Chris W
- 1,302
- 3
- 10
- 16
0
votes
1 answer
how to get EXTRA_DATA from intent that return Search Suggestions results
I can get the data for this SearchManager.SUGGEST_COLUMN_INTENT_DATA, by using:
intent.getSataString();
My question is, how can I get data for this:
SearchManager.SUGGEST_COLUMN_INTENT_EXTRA_DATA
The context of this question is this:
private final…

TheLettuceMaster
- 15,594
- 48
- 153
- 259
0
votes
1 answer
ElasticSearch: Suggestion Completion Multi Search
I am using the suggestion api within ES with completion. My implementation works (code below) but I would like to search for multiple words within a query. In the example below if I query search "word" it finds "wordpress" and outputs "Found". What…

emarel
- 371
- 7
- 30
0
votes
4 answers
How to open list of search suggestions programatically?
I have a SearchView in my Android application which can show suggestions to the given input. Now I want the following behaviour: If I finish the keyboard input and press the "enter" button on the softkeyboard, then I want the keyboard to disappear…

Merlin1896
- 1,751
- 24
- 39
0
votes
2 answers
Elasticsearch completion suggester matching multiple inputs
I have an issue with ES completion suggester. I have the following index mapping:
curl -XPUT localhost:9200/test_index/ -d '{
"mappings": {
"item": {
"properties": {
"test_suggest": {
"type":…

Zaid Amir
- 4,727
- 6
- 52
- 101
0
votes
1 answer
Problems with custom search suggestion on a SearchView
I have a custom search implemented using SearchView (ActionBar) with a custom adapter and provider.
The problem I have is that the query() method of the ContentProvider is called only once, first time I input something in the SearchView! If I…

cmg_george
- 309
- 1
- 2
- 9
0
votes
1 answer
Elasticsearch pruned suggestions
Anyone know how to filter misspellings from the suggest result set?
This query finds good suggestions but also includes partial misspellings. e.g. "comercial morgage" returns "commercial mortgage", which is good, but also "comercial mortgage",…

Tim
- 435
- 1
- 4
- 12
0
votes
1 answer
Action view intent does not work
Action view Intent for Search widget does not send Intent
i am using Toast to show whether intent is sent when user choose item from suggestion in Quick Search Box
here is snippet where intent is received in searchable Activity
if…
user4738438
0
votes
1 answer
get data from search and make suggestions and show them
I have a search box in action bar and want to show custom suggestion from my data in database.
I read google developer pages about making search and suggestions but each page connects me to a lot of other pages and I confused !!
in other sites there…

saeid ezzati
- 855
- 11
- 29
0
votes
1 answer
how to get search suggestions for foundations framework webapp?
How to get search suggestions for foundations framework webapp ?
If it was for bootstrap i could have used typeahead, etc but this is a foundations framework website and including bootstrap js and css is causing conflict with foundations css and…

Abhinav Pathak
- 98
- 8