Are there any real benefits to using a RDBMS vs. flat files on a simple Web doc system (or basic CMS)?

前端 未结 9 1461
野的像风
野的像风 2021-01-06 10:22

The Project

I\'ve been asked to work on an interesting project -- what amounts to a basic Web CMS -- that uses HTML/CSS/jQuery with PHP. However, on

9条回答
  •  庸人自扰
    2021-01-06 10:53

    What is the predicted data sizes for the CMS?

    A large reason for the use of a RDMS is quick,specific access to large amounts of data. The data format might not be large, but if there is a lot of the data, then it might be better in the long run for a RDMS.

    Then again, if the CSM is designed right, then switching between a flat file to RDMS should be as simple as using a different data access file.

提交回复
热议问题