I have a project where anonymous people can vote up or down a sentence, since I'm using Firebase Auth for anon auth, should I use Firestore
or the Realtime Database
?
CodePudding user response:
As discussed here, an app with frequent read and writes is better to use the real-time database, since using Firestore you'll get charged by the amount of read and write you do.