I'm using django_elasticsearch_dsl.
My Document:
html_strip = analyzer(
'html_strip',
tokenizer='standard',
filter=["lowercase", "stop", "snowball"],
char_filter=["html_strip"]
)
class Document(django_elasticsearch_dsl.Document):
name = TextField(
analyzer=html_strip,
fields={
'raw': fields.KeywordField(),
'suggest': fields.CompletionField(),
}
)
...
My request:
_search = Document.search().suggest("suggestions", text=query, completion={'field': 'name.suggest'}).execute()
I have the following document "names" indexed:
"This is a test"
"this is my test"
"this test"
"Test this"
Now if search for This is my text
if will receive only
"this is my text"
However, if I search for test
, then all I get is
"Test this"
Even though I want all documents, that have test
in their name.
What am I missing?
Adding a working example with index mapping, index data, search query, and search result
Index Mapping:
Index Data:
Analyze API:
The following tokens are generated:
Search Query:
Search Result:
For fuzzy search you can use the below search query: