Questions tagged [firebase]

For use with Google's cloud-hosted NoSQL database.

From Google's site:

The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. When you build cross-platform apps with our iOS, Android, and JavaScript SDKs, all of your clients share one Realtime Database instance and automatically receive updates with the newest data.

7 questions
3
votes
0 answers

MySQL along with Firebase for data sync

I'm currently working on a mobile app powered by a web platform, and the mobile app will have some offline capabilities. The application has a small amount of DB entities, and only about 3 of them will be written by the mobile app, and not by the…
1
vote
0 answers

Is necessary to backup Google Firestore DB?

Im working a production app in Google's Firebase Firestore platform, have been development from a very long time (year and a half ago) and now that its in production I'm worried about backing up and data security at long term. I know Google's…
0
votes
1 answer

Should I design my Firestore database with different collections for each userId or one collection for all userIds?

I have a Firestore db where I have setup the structure: registrations/[userId]/symptoms/[documentId]/[some kind of document] I did like this because the user should only read its own symptoms, and therefore I thought it would be good to separate the…
matsmats
  • 101
0
votes
1 answer

Incorrect migration of an object from Firebase to MongoDB

I am in the process of migrating a database from Firebase to MongoDB and am facing a problem. Here is such an object I have stored in the FB: "logs": { "2021-05-24": { "124109": { "foo": "text", "bar": "text" …
RoyalGoose
  • 115
  • 4
0
votes
1 answer

Creating big shared database

I wish to create DB in Firestore. My program will have multiple user and each user will have calendar and can create an event. The user can share this event with any other user (Similar to Google calendar) but each user can add comment only visible…
Dim
  • 103
  • 2
0
votes
0 answers

Choosing right database for storing bank transactions

I am starting a new project within GCP and I am trying to choose a right tool for storing bank transactions: I don't need transactions, these will be basically write-only, no updates I don't need joins and relations I need grouping and sums Ideally…
0
votes
1 answer

How to efficiently design Firebase database for Home service Booking application?

I'm planning to build my own app. It's a home service App to link users with other providers. I'm recently used a NoSQL database, Firebase, and I am stuck with the design of the database for my app. The question is how to structure the databases in…
DevAS
  • 103
  • 3