Reputation: 1865
I see in the docs that Firebase Realtime Database is encrypted.
But there are some terms I don't fully understand:
logically isolate customer data.
mean?Upvotes: 1
Views: 77
Reputation: 530
Firebase stores user's data on the same physical server, but the data is isolated by a computer program (computer logic). It's not physically isolated from one another.
When your data is not "in use" it's encrypted. So when you data is being worked on by a service it has to be not encrypted.
Upvotes: 1