What mysql engine for huge amount of data (logging)?

此生再无相见时 提交于 2019-12-10 09:46:39

问题


What mysql engine would be best suited for handling huge amount (many rows) of (small) data? I talking about logging.

I'm thinking about logging whenever I do things on my page, like calling a function, calling a file and so on.

A tip of how I should structure the table is also appreciated.


回答1:


The Archive storage engine is geared toward storing logs, and is compressed. It supports INSERT and SELECT only, no UPDATE or DELETE. I have never used it, but it may fit your needs.



来源:https://stackoverflow.com/questions/3449506/what-mysql-engine-for-huge-amount-of-data-logging

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!