Rust / Latency Questions
1. If I use the Rust client, do I get the same automatic updates on the objects that I am used to on React? Or is that something I would have to implement on my side?
2. When an action or mutation changes a row or adds a row in a DB, what is the expected latency from the moment the mutation call is done to the moment it is reflected on the object that queries that DB on the client side? Particularly, I am interested in the latency that is added for certain actions by having to go through the DB rather than sending a result directly.
