Home > Mobile >  what would be efficient alternative of "JOIN" in Firestore(NoSQL)?
what would be efficient alternative of "JOIN" in Firestore(NoSQL)?

Time:12-27

I have users collection & transactions collection.

I need to get the user's balance by calculating his/her transactions.

And I heard that you are allowed to make duplicates and denormalize your database to achieve less document read in one request. (reading many docs cost more)

My approaches:

  1. set transaction collection as a "subcollection" in the user document, so that you only get a user's documentation and compute the values need on the client-side.
  2. make those collections as TOP level collections separately and somehow make "JOIN" queries to get his/her transactions then compute the value on the client-side.
  3. Just make a field named "balance" in the user's document and update it every time they make transactions. (But this seems not quite adaptable to changes that might be made in the future)

Which approach is efficient? Or Maybe are there totally different approaches?

CodePudding user response:

Which approach is efficient?

The third one.

Or Maybe are there totally different approaches?

Of course, there are, but by far the third is the best and cheapest one. Every time a new transaction is performed simply increment the "balance" field using:

  • Related