A newer version is available. For the latest information, see the
current release documentation.
Fuzzy Numeric Query Usage
editFuzzy Numeric Query Usage
editFluent DSL example
editq .FuzzyNumeric(c => c .Name("named_query") .Boost(1.1) .Field(p => p.Description) .Fuzziness(2) .Value(12) .MaxExpansions(100) .PrefixLength(3) .Rewrite(MultiTermQueryRewrite.ConstantScore) .Transpositions() )
Object Initializer syntax example
editnew FuzzyNumericQuery { Name = "named_query", Boost = 1.1, Field = "description", Fuzziness = 2, Value = 12, MaxExpansions = 100, PrefixLength = 3, Rewrite = MultiTermQueryRewrite.ConstantScore, Transpositions = true }
Example json output.
{ "fuzzy": { "description": { "_name": "named_query", "boost": 1.1, "fuzziness": 2.0, "max_expansions": 100, "prefix_length": 3, "rewrite": "constant_score", "transpositions": true, "value": 12.0 } } }