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
1
vote
1 answer
Creating multi-word search suggestions
Can Elasticsearch's edgen_n_grams be set up in a way that will build multi-word phrases as ES indexes crawled data?
I'd like to use those multi-word phrases as search suggestions for a small search app that I'm building.
I'm using Nutch to crawl…

user3125823
- 1,846
- 2
- 18
- 46
1
vote
1 answer
Youtube API auto-complete search not working
I am using below code but it is not working for me and always getting null response but when that URL pest into browser it will downloaded one f.txt file that contain below text
window.google.ac.h(["Y",[["young thug",0],["youtube",0],["youth troye
…

Anil Makhija
- 45
- 10
1
vote
2 answers
How to deep crawl with nutch
I'm currently crawling 28 sites (small small, small large) and the crawls are generating about 25MBs of data. I'm indexing with Elasticsearch and using an edge_n-gram strategy for autocomplete. After some testing, it seems I need more data to create…

user3125823
- 1,846
- 2
- 18
- 46
1
vote
0 answers
typeahead multiple columns
I am using typeahead to add autosuggest functions to a wordpress searchform. As a result I expect two columns, column 1 -> Posttype Post, column 2 -> Posttype page seperation like a hr, followd by posttype media.
I am using three datasets (for…

ThomasB
- 402
- 3
- 14
1
vote
1 answer
Handling on click listeners with custom suggestion item
I'm including a search view following the answer to this question. I've created a custom suggestion item which includes a text and an ImageButton. The important code is below:
Filter Activity, in this class the search view is been initialize, and I…

Dani M
- 1,173
- 1
- 15
- 43
1
vote
2 answers
Android searchView drop down menu screen width
Situation:
I have a searchview widget in my appcompat toolbar that allows custom suggestions via sqlitedatabase.
Problem:
I am having trouble expanding the drop down suggestions list to be the full width of the screen. At best, the list width is…

Kevin.Lam
- 289
- 1
- 4
- 16
1
vote
0 answers
Solr Spell Checking returns suggestions with exact match, case sensitive
I am working with Solr SpellChecking.
I use the schemaless mode, default configuration is data driven and I indexed a csv file, inside the file content, there is a column Nationality, and some column values are Singapore.
Then I query spell check…

Java lover
- 11
- 2
1
vote
0 answers
Android: Why Recent and Custom Search Suggestions are not being displayed?
I'm trying to use Search Suggestion in my app. It is supposed to show recent searches and custom search suggestions from web. But the following code is not working. I can't figure out what the problem is. Can anyone help?
MainActivity:
public…

alu
- 277
- 1
- 3
- 12
1
vote
1 answer
SAPUI5 sap.m.Input - Suggestion values
How do I enable live suggestions with reading from my odata Service for a single cell in my table?
oTable.addColumn(new sap.ui.table.Column({
template : new sap.m.Input({
value : column, // also works, its…

dotchuZ
- 2,621
- 11
- 39
- 65
1
vote
2 answers
Elasticsearch term suggester does not return results on exact match
when i request the suggester with
{
"my-title-suggestions-1": {
"text": "tücher ",
"term": {
"field": "name",
}
},
"my-title-suggestions-2": {
"text": "tüchers ",
…

Summer-Sky
- 463
- 8
- 21
1
vote
1 answer
Migrate Richfaces suggestionbox to Primefaces autocomplete
We have the following problem. We're migrating from Richfaces to Primefaces. Here is the code from the Richfaces implementation:

ProgrammingIsAwsome
- 1,109
- 7
- 15
1
vote
1 answer
Javascript simulating keyPress on search input
suppose I have following string and following element:
var s = "aa"
Now what I want to achieve is that I want to dispatch some event which will invoke suggestion
I tried following…

Petr Krčmárik
- 221
- 1
- 2
- 13
1
vote
1 answer
Search Recommandation / Suggestion on large database
I have table with millions of rows. Now when User make any spelling mistake while searching string or word from table, I want to recommend user correct word or string from table. I am using jaro-winkler algorithm to compare distance of string, but…

JP711
- 93
- 1
- 10
1
vote
3 answers
Disable highlighting in Solr Suggest Response
I'm using solr 4.6.1 and created a autocomplete suggester using the technique listed at the solr documentation. I use the
org.apache.solr.spelling.suggest.fst.AnalyzingInfixLookupFactory
and

navinpai
- 955
- 11
- 33
1
vote
0 answers
In elasticsearch, do we need to put suggest in doc?
I added the suggest to doc index as the official docs said:
curl -X PUT 'localhost:9200/music/song/1?refresh=true' -d '{
"name" : "Nevermind",
"suggest" : {
"input": [ "Nevermind", "Nirvana" ],
"output": "Nirvana -…

navins
- 3,429
- 2
- 28
- 29