Re: POSTGRES/MYSQL

From: Benedict Holland <benedict(dot)m(dot)holland(at)gmail(dot)com>
To: Ron <ronljohnsonjr(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: POSTGRES/MYSQL
Date: 2019-03-12 15:56:29
Message-ID: CAD+mzoxibmD7LbX1i_T3quegYsGn84mnXk4EdjsrQyeLXA-r3Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

When you create a table in a transaction, it will commit the transaction
and prevent a rollback. MySQL is not ACID.

Thanks,
~Ben

On Tue, Mar 12, 2019 at 11:44 AM Ron <ronljohnsonjr(at)gmail(dot)com> wrote:

> The Percona fork of MySQL makes active-active clustering very simple to
> set up.
>
> On 3/12/19 9:10 AM, Benedict Holland wrote:
>
> MySQL isn't ACID. Postgresql is a full-featured database that doesn't
> allow injection. It is very safe and secure. Also, the way that PostgreSQL
> has a much better user management system and database/table level access
> ACLs.
>
> Basically, you just asked a bunch of people who have used PostgreSQL over
> MySQL why PostgerSQL is better. It is just better. The only time that MySQL
> might be better is if you have a very simple website and you want a SQL
> backend. For anything else, PostgreSQL is infinitely better.
>
> Thanks,
> ~Ben
>
> On Tue, Mar 12, 2019 at 5:34 AM Thomas Kellerer <spam_eater(at)gmx(dot)net>
> wrote:
>
>> Laurenz Albe schrieb am 12.03.2019 um 10:05:
>> >> Also MySQL has a query cache that allows the results of very common
>> queries to be much faster.
>> >
>> > I have used that feature, and it has bitten me:
>> > https://stackoverflow.com/q/44244482/6464308
>>
>> Note that the query cache was removed in MySQL 8.0 (don't know about
>> MariaDB)
>>
>>
>>
>>
>>
> --
> Angular momentum makes the world go 'round.
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Alvaro Herrera 2019-03-12 16:04:55 Re: Update does not move row across foreign partitions in v11
Previous Message Ron 2019-03-12 15:44:21 Re: POSTGRES/MYSQL