I am tired of Elasticsearch's appetite and am searching for an alternative. Then, I found Manticore: https://manticoresearch.com/
Everything seems fine, but wildcard queries. In ES I use a lot of wildcard queries, like '*word', '*word*' and 'word*'. Manticore does support MySQL protocol, but does not support LIKE queries, so I couldn't find any way to perform this type of queries. Any thoughts?
In
Manticore Searchyou can perform wildcard queries using theMATCH()with theINandANYoperators.Here is an approach of how you can achieve:
Like how you use
%in for example MSSQL, you can use*operator to performLIKEoperations.If the value contains
word:If the value ends with
wordIf the value starts with
wordWith
INoperationWith
ANYoperation