Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I've already read a lot about it, but I'm particularly interested for Laravel and its price difference.
We run a web application based on Laravel and this already with the Google Cloud App Engine. For our web application we need a solid database. Here the question arose, which one?
What are the main differences between Firebase and GCP SQL? How is this reflected in the price?
I'd recommend heading into this GCP Databases page which has a cool matrix on what are the differences between solutions on GCP. It really depends on what kind of data you have and how scalable the solution needs to be.
There is also a nice decision diagram on this blog post which can be seen below. It feels like instead of using Firebase Realtime DB or Cloud Datastore, one should now be using the Firestore which is also integrated into the GCP UI experience.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I'm just starting to get into web development, and I am planning a website.
This website will have users that can edit data. Think of it like a tree:
Theres the organisation (company), then under the organisation there are users. Each user can have multiple "clients", and the user can edit data about the "client" and share that data. The type of data are numbers and text mostly, and possibly some images.
What database paradigm would be best suited to this? I was thinking documents or relational. I want low-cost, but also lots of room for horizontal (and possible vertical) scaling.
Thanks :)
Considering your requirement, Google Cloud SQL will be the best option for you. It provides data manipulation option and horizontal scaling.
Google Cloud SQL is a fully-managed database service that offers high performance, scalability, and convenience. Hosted on Google Cloud Platform, Cloud SQL provides a database infrastructure for applications running anywhere.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I'm a web developer and mobile applications. I have several clients which I manage in a hosting service with whm panel. Now I want to start using Google Cloud. My question is whether it is better to create a project for each client or to create a single project with a lot of space and there to store all the pages and databases. Please help me with this because I do not know what is the best practice
From my experience,
If your customer pays a fixed price for hosting it does not matter.
If you charge "pay as you go" then a separate project is the only way you can know how much exactly to charge.
Like Ken says, it is very difficult to predict your needs with so little information. One point to keep in mind: if you ever plan to turn over ownership of the project to the client, then having a separate project for each client will make life so much easier.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have used Document DB - run some queries using https://www.documentdb.com/sql/demo. Now I would like to write an app and was thinking of using Aurelia. Anyone tried to use Aurelia with Document DB. Anything to watch out for?
I'd recommend connecting Aurelia to DocumentDB through some middleware, e.g. a Node.js server.
You can find a pretty good blog post on this subject here:
Data Points - Aurelia Meets DocumentDB: A Matchmaker’s Journey by Julie Lerman
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I need to use a server for portions of my app. Since I'm using Express for this what is the benefit for using Cloud Code for aspects of my app that could be hosted on the server or in Parse Cloud Code?
You can use both the server and cloud code for custom functions but each have there own purpose.
Cloud Code (the main.js file) is really more so for having custom API endpoints that have logic when they are called. Like changing one field for table changes another field.
The server part (all of the other files) is really for just hosing a website that uses express stuff and renders all your web pages using "ejs" or "jade".
I'm a bit new to parse but I hope this answers your question.
Using Cloud Code for our mobile app is very useful now days.
there are following things that must know about Cloud Code
1.If your app is large then the code can be save on cloud so that our app take less time to load
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
In my app which is data collection app i need offline support. Let's say when i am gathering user's data there is no connection on device but once the device comes in network the whole data should automatically goes to the server.
How should i implement this kind of functionality.
Thanks,
Your question is pretty vague, but I assume you're wondering HOW to persist data and not how to automatically send it to the server.
If the data is very simple, NSUserDefaults may suffice.
If you need a bit more complicated data structures, you can use archives.
If you need to store complex object graphs you need to use Core Data.
There's a pretty good guide explaining all of these here.