Best MySQL Storage Server

Just wondering what the best storage engine for my site will be? I manually enter the values ​​into the database - no user input is entered into the database. It mainly contains short values ​​as well as short URLs (for content-based images). I noticed on an empty table that InnoDB has an overhead of 3,690 MB. This seems a bit extreme, given that it is not available.

Will MyISAM be better? Suggestions?

EDIT: everything that I really do, besides manually entering the values ​​in phpMyAdmin, queries the rows and displays the data on the page using variables.

+3
source share
1 answer

As a general recommendation, use InnoDB, 3.690Mb nothing.

: MyISAM InnoDB

+5

All Articles