Firebase:实时数据库和文件存储之间的差异

前端之家收集整理的这篇文章主要介绍了Firebase:实时数据库和文件存储之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从这篇文章 Difference between Data Storage and Hosting Storage?中了解到实时数据存储和托管存储

但是我仍然不清楚实时数据库和新引入的文件存储.@H_301_3@

有人有一些简短的解释吗?@H_301_3@

提前致谢 .@H_301_3@

(根据与Difference between Data Storage and Hosting Storage?重复的问题,问题解决和我所要求的是两个不同的东西,托管存储和文件存储在Google firebase的情况下是不同的)@H_301_3@

解决方法

Firebase现在提供这些地方存储您的数据:

> Realtime Database
> Remote Config
> Hosting
> Storage@H_301_3@

存储数据的最佳位置取决于要存储的数据类型和要使用的方式.@H_301_3@

Firebase documentation这样说:@H_301_3@

  • The Firebase Realtime Database stores JSON application data,like game state or chat messages,and synchronizes changes instantly across all connected devices.@H_301_3@

  • Firebase Remote Config stores developer-specified key-value pairs to change the behavior and appearance of your app without requiring users to download an update.@H_301_3@

  • Firebase Hosting hosts the HTML,CSS,and JavaScript for your website as well as other developer-provided assets like graphics,fonts,and icons.@H_301_3@

  • Firebase Storage stores files such as images,videos,and audio as well as other user-generated content.@H_301_3@

原文链接:https://www.f2er.com/mssql/81683.html

猜你在找的MsSQL相关文章