Hi!
I have a frontend table that renders my records from Algolia. In order to keep this UI up to date, i’m currently using saveObject.wait().then(...)
and it’s working great - operations generally take just a hair longer than if I didn’t use it. My concern though is that my index is only at like 200 records at the moment. Will the time it takes to get a response from wait()
be a lot longer if my index has thousands of documents in it, and if so, any ballpark idea of how much slower? I’m generally only waiting for single operations, doing one save/update at a time.
I’m aware that wait should be used sparingly, but it’s been the most reliable and clean way to do it so far.
Thanks!