防止 python 搁置损坏

发布于 2024-10-03 13:20:50 字数 53 浏览 2 评论 0原文

我应该如何防止搁置文件损坏?是否应该在大部分时间关闭搁架,然后仅在需要读取或编辑值时才打开?

How should I prevent corruption in a shelve file? Should the shelve be closed most of the time and then opened only when I need to read or edit a value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爺獨霸怡葒院 2024-10-10 13:20:50

如果持久对象的安全性在您的项目中非常重要,那么使用 shelve 并不是一个好主意。酸洗对象并手动将它们写入文件也不是。

考虑到真实的数据库会投入大量资源(脑力和代码)以确保发生故障时的安全。因此,将您的数据保存在真实的数据库中。最简单的是 sqlite,因为它与 Python 捆绑在一起。 sqlite 非常安全,并且具有很多智能功能,即使在系统发生故障时(例如有人被 PC 的电源线绊倒),也可以将数据保持在某种有效状态。

If safety of your persistent objects is of high importance in your project, using shelve is not a good idea. Neither is pickling objects and manually writing them into files.

Consider that real databases invest huge resources (brainpower and code) to be safe in case of failures. So keep your data in a real DB. The simplest would be sqlite, as it comes bundled with Python. sqlite is quite safe and has a lot of smarts in it about keeping your data in some valid state even in case of system failures (like when someone trips on your PC's power cable).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文