I'm not getting the result "bicycle" when searchin...
# community-help
a
I'm not getting the result "bicycle" when searching for "cycle" in Typesense. My query is:
Copy code
{
  "q": "cycle",
  "page": "1",
  "per_page": "20",
  "query_by": "title,category,brands,description"
}
f
That's because "bicycle" doesn't start with the term "cycle". This would be returned when using infix search. Infix search is computationally intensive and should not be used for large fields
a
Are there any alternative solutions to resolve this issue?
f
You could look into synonyms, semantic search or saving the main part of your word in a different field and searching by that as well
A synonym here is the first solution I'd look into myself
a
@Fanis Tharropoulos Okay will try this. Thank you for your assistance.
🙌 1