Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the longest string that can be stored using firebase?

Tags:

firebase

Whats the max number of characters in a string I can save in firebase? Is it unlimited? At what point will It get too slow?

like image 728
nachshon f Avatar asked Feb 21 '16 02:02

nachshon f


People also ask

What is the limit of Firebase storage?

Storage for your Hosting content is at no cost up to 10 GB. If you are not on the Blaze plan, and you reach the 10 GB limit of no-cost Hosting storage, you won't be able to deploy new content to your sites.

Can Firebase handle large data?

Yes, it is possible to migrate to Firebase even if your database is very large. To archieve this, i suggest you watch this tutorial, The Firebase Database For SQL Developers. Even if Firebase is a NoSQL Database, i'm sure you'll be very familiar in short time.

What kind of data can be stored in Firebase?

Firebase Realtime Database is a NoSQL cloud database that is used to store and sync the data. The data from the database can be synced at a time across all the clients such as android, web as well as IOS. The data in the database is stored in the JSON format and it updates in real-time with every connected client.

Why are my firestore reads so high?

If you leave the console open on a collection or document with busy write activity then the Firebase console will automatically read the changes that update the console's display. Most of the time this is the reason for unexpected high reads.


1 Answers

Per the Firebase docs, the maximum size of a child value is 10mb (UTF-8 encoded).

UTF-8 uses 1 to 4 bytes per character, so a 10mb string could contain between 2.5 million - 10 million characters.

like image 88
bmc Avatar answered Oct 17 '22 02:10

bmc