Reputation: 13803
If I read the documentation from here, Firebase has some limitations. I can only write 10000 documents per second.
Maximum writes per second per database 10,000 (up to 10 MiB per second)
what is 'write' in here ? obviously it is not reading a document.
create, update and delete document ?
or it is just create a document considered as write ?
Upvotes: 0
Views: 105
Reputation: 14135
It is set as well as updates. One document created is one write. If the same document is updated later then it Firebase counts it as one more write.
Upvotes: 1