The documentation for firebase specifies a limit for "Size of one child value" - 10 MB. Does this mean the size of this child's JSON object?
For example, using the example in the documentation:
{ "users": { "mchen": { "friends": { "brinchen": true }, "name": "Mary Chen", // our child node appears in the existing JSON tree "widgets": { "one": true, "three": true } }, "brinchen": { ... }, "hmadi": { ... } } }
Are node "users" here as a child? if yes, does this mean if the number of users becomes large (for example, hundreds of thousands, if each user has data of 100 bytes), then the sum of the sizes of all users will exceed the limit of 10 MB? Thanks
firebase
zs235
source share