Best Free / low cost SQL's for Magic & AWS?
Charles George
Doing some research..., I'm sure this has an easy and non-controversial answer :)...
What's the best free / low cost SQL (or non-sql) DB for Magic & AWS these days? |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
I use MySQL Community Edition. Free and works with Magic Express license. Works great!
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Craig Martin
So, this is a really interesting question to me.
My stealth project for April/May is to figure out how I can build and deploy the best Magic backend traditional-merge web application ever built based on the T3 stack.
It may not work. Then again, hey, it's me.
From: main@magicu-l.groups.io <main@magicu-l.groups.io> on behalf of Charles George <Charles73@...>
Sent: Wednesday, March 29, 2023 11:44 AM To: main@magicu-l.groups.io <main@magicu-l.groups.io> Subject: [magicu-l] Best Free / low cost SQL's for Magic & AWS? Doing some research..., I'm sure this has an easy and non-controversial answer :)...
What's the best free / low cost SQL (or non-sql) DB for Magic & AWS these days? |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
steve stevenworthington.com
I’m going to chime in here! Realistically using any of the relation database services on AWS is not an inexpensive proposition. If you are looking for “cheap” and AWS in the same sentence you are going to the wrong place! Getting a vanilla instance at AWS and
installing a database such as MySQL or Postgres that you are going to manage is an option that will be less expensive, but realistically you are not just going to host a single instance on an AWS server. You are going to need all the other public cloud system
components; public IP, storage, network, backup, ingress and egress charges, security and probably at minimum a “landing zone” and maybe AD or some other form of authentication.
toggle quoted message
Show quoted text
All “food for thought”! Steve Worthington
On Apr 2, 2023, at 4:23 PM, Craig Martin via groups.io <craig@...> wrote:
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Here's what Bard has to say...
---------------------------------------------------------------- MySQL, SQLite, and PostgreSQL are three of the most popular open-source relational database management systems (RDBMS). They each have their own strengths and weaknesses, and the best choice for a particular application will depend on the specific requirements of that application. MySQL is the most popular RDBMS, with a market share of around 45%. It is easy to use and has a large community of users and developers. MySQL is a good choice for small to medium-sized applications that do not require a lot of performance or scalability. SQLite is a smaller, embedded RDBMS that is designed to be used in applications where size and performance are critical. SQLite is used in a wide variety of applications, including mobile devices, embedded systems, and web applications. SQLite has a market share of around 3%. PostgreSQL is a full-featured RDBMS that is comparable to commercial RDBMS such as Oracle and Microsoft SQL Server. PostgreSQL is known for its reliability, scalability, and flexibility. PostgreSQL has a market share of around 15%. The following table summarizes the key differences between MySQL, SQLite, and PostgreSQL:
Ultimately, the best choice of RDBMS for a particular application will depend on the specific requirements of that application. MySQL, SQLite, and PostgreSQL are all good choices, but they each have their own strengths and weaknesses. |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Craig Martin
I'm just looking forward to the day when AI does all the development and deploys to an audience comprised only of AI bots that do all the work without human interaction - and I can just ride my bike.
Wait, that day already arrived.
From: main@magicu-l.groups.io <main@magicu-l.groups.io> on behalf of Charles George <Charles73@...>
Sent: Monday, April 3, 2023 10:09 PM To: main@magicu-l.groups.io <main@magicu-l.groups.io> Subject: Re: [magicu-l] Best Free / low cost SQL's for Magic & AWS? [Edited Message Follows] Here's what Bard has to say...---------------------------------------------------------------- MySQL, SQLite, and PostgreSQL are three of the most popular open-source relational database management systems (RDBMS). They each have their own strengths and weaknesses, and the best choice for a particular application will depend on the specific requirements of that application. MySQL is the most popular RDBMS, with a market share of around 45%. It is easy to use and has a large community of users and developers. MySQL is a good choice for small to medium-sized applications that do not require a lot of performance or scalability. SQLite is a smaller, embedded RDBMS that is designed to be used in applications where size and performance are critical. SQLite is used in a wide variety of applications, including mobile devices, embedded systems, and web applications. SQLite has a market share of around 3%. PostgreSQL is a full-featured RDBMS that is comparable to commercial RDBMS such as Oracle and Microsoft SQL Server. PostgreSQL is known for its reliability, scalability, and flexibility. PostgreSQL has a market share of around 15%. The following table summarizes the key differences between MySQL, SQLite, and PostgreSQL:
Ultimately, the best choice of RDBMS for a particular application will depend on the specific requirements of that application.
MySQL, SQLite, and PostgreSQL are all good choices, but they each have their own strengths and weaknesses. |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
steve stevenworthington.com
Don’t forget SQLite is single user
toggle quoted message
Show quoted text
Steve Worthington
On Apr 4, 2023, at 12:09 AM, Charles George via groups.io <Charles73@...> wrote:
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
Pavel Mencl
I'm curious about this. How would I support multiple users with Magic? Because, as Steves mentions, Magic documentation says that SQLite is single user only.
Pavel Is the SQLite database good for multiple users? Yes SQLite can support multiple users at once. It does however lock the whole database when writing, so if you have lots of concurrent writes it is not the database you want (usually the time the database is locked is a few milliseconds - so for most uses this does not matter).
|
||||||||||||||||||||||||||||||||
|