与普通文件相比,使用数据库有哪些优点和缺点?
我找不到使用数据库相对于纯文件的优点和缺点。你能帮我一下吗?
I couldn't find the advantages and disadvantages of using a database over plain files. Would you please help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些数据库优势:
纯文本除了最简单的应用程序之外没有太多内容
基本上,如果您正在做除最简单的数据操作之外的任何事情(特别是如果您希望进行并发修改、复杂关系、多个用户,甚至只是大量数据),那么它就是非常值得习惯使用数据库。 PostgreSQL 是我的最爱,尽管我确信您会发现对此有相互冲突的观点:)
A few database advantages:
Plain text doesn't have much except for the most dead-simple application
Basically, if you are doing anything other than the most simple data manipulation (especially if you ever expect to have concurrent modifications, complex relations, multiple users, or even just a lot of data) it's well worth getting used to using a database. PostgreSQL is my favorite, although I'm sure you'll find conflicting views on that one :)
标准的执行。
提高了数据可访问性和响应能力。
提高生产力。
通过数据独立性改进维护。
增加并发性。
改进的备份、恢复和数据可用性。
数据冗余的控制。
数据一致性。
从相同数量的数据中获得更多信息。
数据共享。
提高了数据完整性。
提高了安全性。
Enforcement of standards.
Improved data accessibility and responsiveness.
Increased productivity.
Improved maintenance through data independence.
Increase concurrency.
Improved backup, recovery and data availability.
Control of data redundancy.
Data consistency.
More information from the same amount of data.
Sharing of data.
Improved data integrity.
Improved security.