is it possible to filter by a partial match simlia...
# community-help
j
is it possible to filter by a partial match simliar to sqls
LIKE
?
🙌 1
j
Typesense by default does a prefix search (controlled by
prefix: true
search parameter). So that’s equivalent to SQL’s
LIKE xyz%
If you need to do
LIKE %xyz%
that’s called infix search. You’d need to set the
infix
search parameter at search time and also set
infix: true
for the field in the collection schema (this is a CPU-intensive operation)
j
Thank you!
👍 1