MongoDB Stitch vs Firebase Firestore AND/OR operations

1.5k Views Asked by At

I mainly want to compare using firestore vs mongoDB Stitch queries.

I'm building an app (angular 5 + ios + android). The app is mainly of 2 views profile and feeds.

The profile contains an array of tags(all user post tags) and a timeline of his posts.

every post got its own array of tags and timestamp. so I can filter them.

filters are either AND / OR operation.

In firestore I plan to use object maps so the AND operation can work

In firestore in order to create OR operation, I need to loop on all the possibilities fetch them individually, aggregate the data and remove duplicates. This can be done on the frontend or inside a cloud function.

I also need to run analytics to know the trending tags every day.

If a user got 100s of posts. How will firestore compare to mongoDB Stitch regarding?

  • Speed
  • Cost
0

There are 0 best solutions below