So, firebase is a pretty big deal. Wonder how many people know when to use it and when not to use it
Feel free to share your sentiments
So, firebase is a pretty big deal. Wonder how many people know when to use it and when not to use it
Feel free to share your sentiments
For further actions, you may consider blocking this person and/or reporting abuse
Web3 Hires -
Code Artisan -
Ragul.M -
Paul Osadchuk -
Top comments (5)
Tried it in a side project, very cool. If you, like me, build a small app like a To-do list it is nice because you do not need a database server opened. Also used firebase Auth and this blew my mind how easy it is to bring those "connect with Google" feature.
I guess I would not rely on it for a project with a complex schema because I still have the feeling storing my key pairs is volatile (no foreign keys, no constraints, I prefer relational databases).
I do not know at this date if they dispose of a relational store, but if they could come close to Google Cloud SQL, I think they would engage more developers to use this great tool.
When I use a tool, it is usually to solve a problem.
Firebase (Auth and Firestore) are a nice way to deal with authentication so I am using it for that. I was using an open source solution (JEE and Postgresql based) before but scaling up was a pain (both in configuration and cost), I also had to monitor it.
I also use Firebase hosting for my static HTML app because it is convenient and I am planning to use a Google function to add a small dynamic functionality (monitoring outbound traffic).
My API is hosted in GCP App Engine so that I don't need to deal with maintenance or monitoring.
I wrote an article that discusses most of my gripes with firestore. I think the rest of the Firebase stack is great, but consider using something else for the database.
medium.com/@spencerpauly/why-i-swi...
I wouldn't use it for anything period. Here's why:
I don't see enough positives to outweigh these extremely negative aspects of firebase.
Appreciate the honesty
Fair enough. Does your google account status affect how you access firebase though? Also, why not create a purely developer google account? Only used with developer services that is
Also, what about real-time databases? Would you use something like rethinkdb instead? What are your thoughts on this?