Databases versus plain text

后端 未结 14 1660
我在风中等你
我在风中等你 2020-12-04 22:01

When dealing with small projects, what do you feel is the break even point for storing data in simple text files, hash tables, etc., versus using a real database? For small

14条回答
  •  一整个雨季
    2020-12-04 22:34

    The problem with small projects is that they become bigger before we know it. And once they do , we start missing the sql capabilities.

    Always design such that a db can be utilized later on if required without ripping apart half of the application.

提交回复
热议问题