Hello guys, we want to set up a client search for Typesense so that it can cache the search result locally. This seem to be the default behavior in Algolia but not in Typesense.
For example, when we have a search box for user to input the query, and it returns the full list when the search box is empty ;now when user searches for something and then clears the search box, it should return the full list again. In Algolia, when user clears the search box, it shows the fully list instantly
without sending any request; but in Typesense, it sends another request to get the result...
We want to achieve the same effect as it is in Algolia, what is the proper way to do this? I tried setting
cacheSearchResultsForSeconds
configuration for the client to like 1 day, but it doesn't seem to do anything.