Is the traffic from/to firebase database server compressed?

后端 未结 1 1447
忘了有多久
忘了有多久 2021-01-22 17:54

Perhaps a bit of a silly question, but, is the traffic from/to firebase DB server compressed?

If so, what algorithm(s)?

What compression ratios

相关标签:
1条回答
  • 2021-01-22 18:41

    The communication between a Firebase client and its Database Servers goes over a secured web socket connection. The data is not compressed.

    You can easily see this yourself by accessing the Firebase Database from your browser and then looking at the network tab. It'll show you exactly what data is being exchanged and in which format.

    0 讨论(0)
提交回复
热议问题