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
Is it possible to combine _msearch and a suggester in Elasticsearch?
I'm trying to bundle multi search api with a term suggester.
When I try to use a suggester on the search endpoint, it works:
POST my-index-000001/_search
{
"query" : {
"match": {
"message": "tring out Elasticsearch"
}
},
…

Pavel Vergeev
- 3,060
- 1
- 31
- 39
0
votes
0 answers
Laravel Ads Recommendation system/engine
I need a bit of help in showing user the ads of the those categories that he has seen previously. Its more like suggestion system, the system should generate a intelligent combination of most viewed and new categories. We are recording the ads view…

Saad
- 21
- 1
- 7
0
votes
2 answers
Forwarding to the next page when clicking on suggestion
I am using an autocomplete textfield in my flutter application. While typing text in the textfield the user gets the suggestions (via JSON). Then the user should click on a suggestion and should be forwarded to the "SecondPage". At the same time the…

Timitrov
- 211
- 1
- 3
- 14
0
votes
1 answer
Elasticsearch-7.8.1 is intermittently showing random suggestions during phrase suggestion
I've an Elasticsearch-7.8.1 running in 3-node cluster setup. I use a match query on fields along with phrase suggester for querying the documents across multiple indices.
Now coming to the problem, whenever I use the above mentioned match query to…

Shivam Som
- 142
- 1
- 8
0
votes
1 answer
Why Search Box Autosuggestions Display Slow
I implemented a SearchTextBox and it works finally however it is pretty slow (Autosuggestions show up after 5-7 seconds). I read from a CSV file and create an object type Observable Collection and dump that into SuggestionSource then filter the…

Amadeus
- 157
- 10
0
votes
1 answer
AnalyzingInfixLookupFactory implementation in Solr Suggestor not returning suggestion results
My requirement is to provide automatic suggestions to users on asset names as per their project.
I have tried using AnalyzingInfixLookupFactory and BlendedInfixLookupFactory, as these are the only ones that support context filtering.
But no…

Debabrata Das
- 23
- 7
0
votes
1 answer
How to distinguish context fields in suggestion queries in Solr?
I tried to write my own suggester in Solr that uses context fields. Now configs look like this:
solrconfig.xml
mySuggester
0
votes
0 answers
Angular autocomplete - replace field with current highlighted selection
I'm using the Angular autocomplete in a project.
The user can navigate the autocomplete results with arrow-up and arrow-down. However, I would like to make it behave like the google-suggest does; when selecting a value using arrow-up or arrow down,…

Rob Audenaerde
- 19,195
- 10
- 76
- 121
0
votes
1 answer
Javascript regex search ArrayList for specific word and print words before/after
sorry if this question is already answered but I didn't anything which matches my case.
Currently I am trying to build a search suggestion function with Azure Cognitive Search. This is working pretty fine. But now I try to build something like…

OjunbamO
- 29
- 1
- 3
0
votes
0 answers
How to display search results in an overlapping/dropdown style
Hi I have a website with a search function and I would like to have the results displayed like the google search, so that the results show directly below the search bar. The screenshot shows the idea:
My the html for my search bar looks as…

0xDr0id
- 189
- 3
- 18
0
votes
0 answers
Get next 100 records in suggest API azure search
var suggest = function(request, response) {
$.ajax({
type: "POST",
url: suggestUri,
dataType: "json",
headers: {
"api-key": "{{ searchServiceApiKey }}",
"Content-Type":…

susritha p
- 27
- 4
0
votes
1 answer
Solr SnowballPorterFilterFactory filter provides incorrect sugestions
I use SnowballPorterFilterFactory for index and query analyzers.
Search for "apple" word.
Solr successfully finds necessary articles, but tels that the word was spelled incorrect and give suggestion: "appl".
It works correct if I search for…

Olga
- 1
- 3
0
votes
1 answer
how to create a flutter app like wikipedia
I'm trying to create a Flutter app like wikipedia where a user can search and display the information but I'm don't have a lot of backend knowledge so it'll be appreciated if someone can guide me what I should do or learn in order to start this…
user9436741
0
votes
1 answer
Solr spell check- Combine correct words with suggested words
We are using Solr 6.1.0 and Solrnet as our client tool to communicate to solr.
When we try to put the words "Lion Knig" in our search,Solr spellchecker auto corrected "Knig" as "King" and got the "result sets" for "Lion King".
On our screen's we…
0
votes
0 answers
elastic suggester is empty
I try to use elastic suggester
so when user start to type some text, autocomplete will help him.
do I need to do something specific on mapping for that index?
if I insert this document to 'init' index:
POST init/_doc
{
"device": "comp-1",
…

larry ckey
- 141
- 2
- 14