I have an application database with a table for users (1 kilobyte of data per user based on count fields * typelength) and about 100 things of the same size that belong to the user (0.5 kbytes per thing), and it is in "user" table and table "thing".
This is likely to result in approximately 51 kilobytes of data for each user. However, I heard that for MySQL, I have to double it to cover index tables, which will lead me to 102kbytes / user. It's true? Are there any other data extension factors for MySQL or 102 kbytes?
Besides the indexing coefficient (which, it seems to me, 2), and storage efficiency (which I also think 2), are there other factors for storing data in MySQL?
source share