Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which database is performance oriented, MySQL or MariaDB? [closed]

Which database is performance oriented, MySQL or MariaDB?

Which storage engine is better for all of the following?

  • databases that should be scalable
  • fast in query processing
  • have community support
  • have a lot of tutorials or any other alternatives present?
like image 645
user492888 Avatar asked Jan 20 '26 08:01

user492888


1 Answers

The performance is much more dependent on the chosen database engine for MariaDB or MySQL. MariaDB provides support for a faster write cache enabled engine called "Aria" compared to the default MyISAM Engine of MySQL.

Aria is usually faster for temporary tables when compared to MyISAM because Aria caches row data in memory and normally doesn't have to write the temporary rows to disk.

Another enhanced area is the way of fetching a view. MariaDB usesTableElimination, but I'm not sure if MySQL uses that at all (I never found that mentioned anywhere!).

In addition to MariaDB, the same Table elimination is found in both Microsoft SQL Server 2005/2008 and Oracle 11g.

like image 184
Puspendu Banerjee Avatar answered Jan 23 '26 20:01

Puspendu Banerjee



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!