Blob and Storage Requirement

后端 未结 1 1564
名媛妹妹
名媛妹妹 2020-12-16 17:44

I have a requirement to store user uploaded files to the database (filesystem is not an option).

The files that are uploaded are different types (e.g. PDF, EXCEL, et

相关标签:
1条回答
  • 2020-12-16 18:05

    MySQL will give you the size of each table using SHOW TABLE STATUS. So if you upload a few test files you should be able to estimate the actual size they'll take up in the database. Each table does have some overhead so I would use as many files as reasonable for testing.

    0 讨论(0)
提交回复
热议问题