-
Search with incorrect search terms (approximate string matching).
-
```
curl -XPUT 'http://127.0.0.1:9200/foo/?pretty=1' -d '
{
"settings" : {
"analysis" : {
"filter" : {
"name_metaphone" : {
"replace" : false,
…
-
Hello,
Like Wikipedia Double Metaphone description say (http://en.wikipedia.org/wiki/Double_Metaphone#Double_Metaphone)
"
It is called "Double" because it can return both a primary and a secondary c…
-
Add in soundex user searching to be able to find names that sound similar but may be spelled differently.
See also: http://en.wikipedia.org/wiki/Soundex
-
Add phonetic token filter, for example:
```
index :
analysis :
filter :
metaphone :
type : phonetic
encoder : metaphone
analyzer :
custom1 :
tokenizer : …
-
-
eg. Harrow on the hill for Harrow-on-the-hill
Ashton under Lyne for Ashton-under-Lyne
-
e.g. "London SW" for bus route 22 in London
-
I've added metaphone.py to a Django project; when I try to create a language file, I get the following error:
richard@gurgeh shared$ django-admin.py makemessages -a
processing language fr
…
-
I'm trying to compile this on OS X, I have the dependencies, but when I run make I get:
make -C src install
make -C libsqlite3_geocoder
cc -shared extension.o wkb_compress.o util.o metaphon.o -o libs…