What would be the best way to implement the tag function with a firebase database?
Suppose there are tens of millions of posts where each post can be tagged with a tag or several tags.
If I want to add a filter similar to a check box, where viewers can select one or several tags to see messages that fall under all the tags provided, can this be implemented in the firebase data store?
For example, if the user selects the following 3 tags "Drama", "Love" and "Horror", I want to return all messages tagged with at least these tags.
It would be very easy to do this with a relational data warehouse, but I was not sure that it can be done relatively easily in NoSQL storage (data warehouse cloud, firebase databases).
source share