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
1 answer

write.lock issue in apache solr using AnalyzingInfixLookupFactory

I am using AnalyzingInfixLookupFactory for Auto Suggest feature in our application.But when I try to use auto suggest feature and search for terms in the text box after some time it throws a write.lock error. Below is my configuration in…
Abhijit P
  • 21
  • 2
2
votes
1 answer

search and suggest the keywords from the drop down list

I am using php & javascript. I have written the code for dropdown menu. Now I want to write a code where I enter word in the textbox & it will suggest the word from the dropdown. Like if I enter 'abc' in text box , it will give all the result start…
sharvanaz
  • 75
  • 1
  • 2
  • 10
2
votes
0 answers

I have implemented a suggestions in my search box but when I start with spaces it doesn't give suggestions

I am getting the results from Wikipedia API. Although I am trimming the value of the search box before sending it to the API, I am still not able to get the suggestions: function(results) { var availableTags = results[1];//this array is used to…
2
votes
1 answer

How to make recent-search-suggestions-list appear like those in the Material Design Specification?

The following first image is taken from the Material Design specification for the Search pattern. I have just implemented the Custom Search suggestions in my example app by following this guide. But it appears like the second image. That is the…
2
votes
0 answers

Quantity wise price searching in Apache SOLR

Currently I am working on e-commerce website where price can be vary based on quantity. For e.g Product A --------------------------------------- Quantity | 25 | 50 | 70 | 90+ | --------------------------------------- Price …
Jimish Gamit
  • 1,014
  • 5
  • 15
2
votes
1 answer

Solr 4.10 - Suggester is not working with multi-valued field

Hello everyone i am using solr 4.10 and i am not getting the result as per my expectation. i want to get auto complete suggestion using multiple fields that is discountCatName,discountSubName and vendorName. i have a created multi-valued field…
Dipti Ranparia
  • 570
  • 5
  • 17
2
votes
1 answer

Search suggestion in strings

I have a text file containing: mariam amr sara john jessy salma mkkkkkaooooorllll the user enters a word to search for: for example: maram As you can see, it does not exist in my text file .. I want to give suggestions, similar to the word maram is…
CodeX
  • 135
  • 2
  • 13
2
votes
1 answer

android search with suggestions

I want to make a search with suggestions. after running the app and typing a string in my search box non of the following Logs Log.d("states","a onCreate"), Log.d("states",arg0.toString()), Log.d("states",query) or Log.d("states","searchactivity…
saeid ezzati
  • 855
  • 11
  • 29
2
votes
2 answers

Solr query suggestions

I'm building a customized e-commerce website and using SOLR (4.8.1) for indexing/searching products. I want to provide a search field with autocomplete to help users by prompting suggestions, as they type: Display search suggestions (terms/phrases)…
Rodrigo Pires
  • 574
  • 2
  • 11
  • 23
2
votes
1 answer

AWS CloudSearch Suggesters (Auto-complete)

Trying to get suggestions suggested matches from AWS CloudSearch using their suggesters feature. I have configured the suggester through the CloudSearch portal which is self-explanatory. Here is the following request I am trying to make with python…
2
votes
0 answers

Threshold frequency is not working in spell check in Solr

I am get stuck in middle of Solr. I need only most popular words w.r.t query. I have used phonetic filter on both index and query but here the problem is that it is giving too many terms. I need only few terms which are very specific to the query.…
user974
  • 41
  • 7
2
votes
0 answers

Android - How to pass data through when user selects a search suggestion?

I am creating a SearchActivity with search suggestions. The suggestions appear as expected when you begin to type a word into the SearchView, but when you click on one of the suggestions, I end up with this error: no such column: products This…
ban-geoengineering
  • 18,324
  • 27
  • 171
  • 253
2
votes
0 answers

Elasticsearch - How to change the sort type of phrase suggester's direct generator?

I am trying create did-you-mean feature with using phrase suggester. When i give my text to term suggester and sort results by score, I am getting most wanted results at the top of the term based suggestions. But combining these separate results…
Heval
  • 338
  • 3
  • 11
2
votes
0 answers

How to implement Custom Suggestions in SearchView from fragment

i have a view pager with 3 fragment one of the fragment have searchview widget and i get to know that i can,t implement the standard search interface so i implement some thing like this but how to implement Custom Suggestions in SearchView public…
shakil.k
  • 1,623
  • 5
  • 17
  • 27
2
votes
1 answer

Limiting the number of search suggestions, android

Is there a way to limit the number of displayed suggestions, when using the search interface with custom search suggestion? Thanks!
Edmond Tamas
  • 3,148
  • 9
  • 44
  • 89