hi guys, i am building a web app and i got a collection that has like 500 documents, those documents are listed on a page and i got a search input, my question is: Is using appwrites Query a good option for search?
There is a limit to read So you might need to trigger the query after when user stops writing or something like that. You could use the contains query to check for docuemets. But if your dont have user storage related issue just load some of them and cache them Then the query can be faster
Recommended threads
- Relations within the same table
Hello, I'm currently building a sort of dictionary (a literal one) and thus I need words (which is one single table of words in my database) to be able to have ...
- [SOLVED] Query.search() returning all ro...
When I use Query.search() instead of returning rows with the keywords provided it just returns all the rows in the table.
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...