mirror of https://github.com/apache/lucene.git
SOLR-12024: fix parameter name from "encoding" to "encoder"
This commit is contained in:
parent
0c61c857c8
commit
a845023652
|
@ -72,13 +72,13 @@ For more information, see http://en.wikipedia.org/wiki/Daitch%E2%80%93Mokotoff_S
|
|||
|
||||
== Double Metaphone
|
||||
|
||||
To use this encoding in your analyzer, see <<filter-descriptions.adoc#double-metaphone-filter,Double Metaphone Filter>> in the Filter Descriptions section. Alternatively, you may specify `encoding="DoubleMetaphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>, but note that the Phonetic Filter version will *not* provide the second ("alternate") encoding that is generated by the Double Metaphone Filter for some tokens.
|
||||
To use this encoding in your analyzer, see <<filter-descriptions.adoc#double-metaphone-filter,Double Metaphone Filter>> in the Filter Descriptions section. Alternatively, you may specify `encoder="DoubleMetaphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>, but note that the Phonetic Filter version will *not* provide the second ("alternate") encoding that is generated by the Double Metaphone Filter for some tokens.
|
||||
|
||||
Encodes tokens using the double metaphone algorithm by Lawrence Philips. See the original article at http://www.drdobbs.com/the-double-metaphone-search-algorithm/184401251?pgno=2
|
||||
|
||||
== Metaphone
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="Metaphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="Metaphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
Encodes tokens using the Metaphone algorithm by Lawrence Philips, described in "Hanging on the Metaphone" in Computer Language, Dec. 1990.
|
||||
|
||||
|
@ -87,7 +87,7 @@ Another reference for more information is http://www.drdobbs.com/the-double-meta
|
|||
|
||||
== Soundex
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="Soundex"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="Soundex"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
Encodes tokens using the Soundex algorithm, which is used to relate similar names, but can also be used as a general purpose scheme to find words with similar phonemes.
|
||||
|
||||
|
@ -95,7 +95,7 @@ See also http://en.wikipedia.org/wiki/Soundex.
|
|||
|
||||
== Refined Soundex
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="RefinedSoundex"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="RefinedSoundex"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
Encodes tokens using an improved version of the Soundex algorithm.
|
||||
|
||||
|
@ -103,7 +103,7 @@ See http://en.wikipedia.org/wiki/Soundex.
|
|||
|
||||
== Caverphone
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="Caverphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="Caverphone"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
Caverphone is an algorithm created by the Caversham Project at the University of Otago. The algorithm is optimised for accents present in the southern part of the city of Dunedin, New Zealand.
|
||||
|
||||
|
@ -111,7 +111,7 @@ See http://en.wikipedia.org/wiki/Caverphone and the Caverphone 2.0 specification
|
|||
|
||||
== Kölner Phonetik a.k.a. Cologne Phonetic
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="ColognePhonetic"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="ColognePhonetic"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
The Kölner Phonetik, an algorithm published by Hans Joachim Postel in 1969, is optimized for the German language.
|
||||
|
||||
|
@ -119,7 +119,7 @@ See http://de.wikipedia.org/wiki/K%C3%B6lner_Phonetik
|
|||
|
||||
== NYSIIS
|
||||
|
||||
To use this encoding in your analyzer, specify `encoding="Nysiis"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
To use this encoding in your analyzer, specify `encoder="Nysiis"` with the <<filter-descriptions.adoc#phonetic-filter,Phonetic Filter>>.
|
||||
|
||||
NYSIIS is an encoding used to relate similar names, but can also be used as a general purpose scheme to find words with similar phonemes.
|
||||
|
||||
|
|
Loading…
Reference in New Issue