What would be the best way to implement "Tag" feature with firebase database?
Assume that there are tens of millions of posts where each post can be tagged with a tag or multiple tags.
If I want to add a checkbox-like filter where viewers can select one or more tags to see posts that fall under all tags provided, can this be implemented in firebase datastore?
For instance, if a user selects the following 3 tags 'Drama', 'Love' and 'Horror', I want to return all posts which are tagged with at least these 3 tags.
It would be very easy to do this with relational datastore, but I wasn't sure if this can be done relatively easily in NoSQL (cloud datastore, firebase database) storage.