Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
190 views

PHP MySQL Search Suggestions

In my web application there will be several users. and they have their own contents uploaded to my webapp. For each content they upload it has a title, description and tags(keywords). I can write a ...
4
votes
8answers
575 views

Detecting misspelled words

I have a list of airport names and my users have the possibility to enter one airport name to select it for futher processing. How would you handle misspelled names and present a list of suggestions? ...
2
votes
0answers
65 views

how to correct spelling mistakes in Google custom API

I am using Google's custom search API, I make an HTTP request to a URL that looks like this: ...
1
vote
3answers
91 views

Solr Suggester “autocomplete” component with php

I use apache-solr-3.5.0 and i want make an something like : http://www.kaufda.de/Berlin (Phrase suggestion) I used the Suggester - (a flexible "autocomplete" component for Solr) Like described on ...
1
vote
1answer
409 views

Show Search Suggestions while typing in landscape-mode

i already get the search suggestion while typing in the searchfield of the search-dialog. While typing in Portrait-Mode, the result are listed under the search-dialog. But when i change into ...
1
vote
2answers
573 views

Sphinx and “did you mean … ?” suggestions idea. WIll it work?

I'm trying to come up with the fastest way to make search suggestions. At first I thought a Levenstein UDF function combined with a mysql table would do the job. But using levenshtein, mysql would ...
1
vote
2answers
305 views

Word suggestion

Duplicate of how does the google did you mean algorithm work does anyone know how to write a word suggestion feature like Google's "did you mean?" feature? or know where I can find code samples. ...
0
votes
0answers
27 views

Solr spellcheck problems

I have a weird problem with the spellcheck suggestions of Solr. I search for a term like this (a product-number for example): 08p17a6 With this term, i find documents in my index. I have enabled ...
0
votes
0answers
43 views

Custom Search Suggestions: provide different suggestions from same content provider

I have 2 search buttons in 2 different activities. when i click on the button i invoke the default search feature in android using startSearch(). I added suggestions to the search eventually. But ...
0
votes
0answers
35 views

How to join Android Media query search suggest

I will explain a little more my scenario. I'm extending the default music player with other features and informations. So I've a sqlite db where I store those informations in addiction of the ...
0
votes
1answer
315 views

How to get spelling suggestions from synonyms.txt in solr?

I have a list of misspelled and corrected words in synonyms.txt file. How can I use that in solr for spelling suggestions? e.g. synonyms.txt contains following entries: laptap => laptop delll ...
0
votes
0answers
12 views

Suggestions based on old transactions [closed]

I want to use some mechanisms to suggest(or refer) the items in the database to users based on the current transaction. For ex, In IMDB or Amazon, users are suggested with items based on the current ...
0
votes
1answer
76 views

How to give a suggestion from the sphinx index?

I wonder if there is a way to give a suggestion from the sphinx index. for instance, when I search 'sadfasasas' on google, I get 6 results. and it said.' Do you mean "sasasasas". when I ...
0
votes
1answer
188 views

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: ...
0
votes
2answers
125 views

Word Suggestion program

Suggest me a program or way to handle the word correction / suggestion system. - Let's say the input is given as 'Suggset', it should suggest 'Suggest'. Thanx in advance. And I'm using python and ...
0
votes
1answer
354 views

Custom Suggestions in Search with custom layout

I have successfully implemented Custom Search suggestions when using the Search Dialog. However currently each suggestions item is just text. I would like to add in a icon on the left. The problem ...
-1
votes
3answers
74 views

word suggestion based on input algorithm?

I am thinking of creating a web site, which lets people to rate restaurants. Since I don't have a database containing all the restaurants, this web site relies on user's inputs. But there is a ...