Linked Questions
15 questions linked to/from What's the difference between Cloud Firestore and the Firebase Realtime Database?
4
votes
1
answer
5k
views
Realtime Database vs Firestore [duplicate]
I am building an app related to online bookings of Barbers in my city.I am planning to use Firebase to store my data and showing realtime updates. What will be the right option i.e. Realtime Database ...
5
votes
2
answers
2k
views
Difference between Firebase real-time database and Cloud Firestore [duplicate]
On the firebase console a Cloud Firestore tab has been added and going through the documentation it has some similar features like Realtime database. My android app already uses the Real-time database,...
0
votes
1
answer
2k
views
Firebase Firestore [duplicate]
Recently Firebase Firestore was launched. After going through the documentation, I am confused how exactly Firebase Firestore is different Firebase Realtime Database and what are the situations in ...
0
votes
1
answer
1k
views
Difference between real-time database and fireStore in firebase? [duplicate]
As fireStore is the new inclusion as real-time database into firebase, obviously it will outperform the old real-time data ablaze in every aspect. What are the actual differences between the two ...
-1
votes
1
answer
965
views
Different between firebase realtime database and firebase firestore [duplicate]
I am working on an android application that is based on IQ level questions. That I wanted to upload on the play store. The app consisted of levels more than 50. each level is consist of 9 questions. I ...
0
votes
0
answers
32
views
what is the advantage of firestore compared to firebase rtdb regarding to the price [duplicate]
recently Im learning firebase, for instance to create a chat app, it seems that firestore will be much expensive than firebase rtdb, except this normally the CRUD has small size of data, so I feel ...
28
votes
2
answers
20k
views
What is the difference between Firebase Storage and Cloud Firestore/Realtime Database?
I have been using Google Firebase's Realtime Database, but want to be able to store more complex user-generated data like images, videos etc. As per the Firebase docs, they provide two other services: ...
8
votes
1
answer
6k
views
Can Firestore Scale
Can the new Firestore service scale?
I know it's in beta. I'm looking for some live examples of Firestore Scaling.
In terms of:
Number of database transactions.
Size of database.
Also - Does firebase ...
6
votes
0
answers
1k
views
Cloud Firestore: Query secured documents by field content
EDIT: Seems to be an open issue in Firestore. Also see this post.
In Google Cloud Firestore, I want to model a collection of groups. Each group contains a name, the list of it's users and some ...
1
vote
1
answer
947
views
How to do the update function using React and Firebase V9?
I'm using firebase's realtime database with react to create a CRUD, but the update function is making me very confused for two reasons.
1 - What is the most correct method to be used to do a simple ...
0
votes
1
answer
721
views
how to get a list of users from firebase
function getUsersEmail() {
const dbRef = ref(getDatabase());
get(child(dbRef, `users/` )).then((snapshot) => {
if (snapshot.exists()) {
console.table(snapshot.val());
} else {
...
2
votes
1
answer
581
views
Good use of Rxjs with Firebase (angular 5)
Since I'm working on angular / firebase, I'm a bit confused of the good use of Rxjs with firebase on Angular 2+ more particularly with Observable/Subject with firebase.on/once. I didn't found good ...
0
votes
1
answer
186
views
Is there an easier way to query Cloud Firestore to get all the documents in a specific collection that a user has NOT seen?
I'm developing a mobile application in Angular. The home screen of the app is a contests page where the user chooses which of the two items they like better.
On initialization, this page gets calls ...
0
votes
2
answers
97
views
This code is for Firestore but how I'll write this code for realtime database firebase in flutter?
Here I am trying to retrive data from realtime database in flutter
Future<UserModel> getUserDrtails(String email) async{
final snapshot = await _db.collection("User").where("...
-3
votes
1
answer
93
views
React Native and Firestore
I am beginner on firebase and need some help with project decision. I am building a react native app for someone and for the database I was thinking of using firebase, but when I was going through the ...