每次页面加载时从数据库序列化数据读/写是否不好?

发布于 2024-10-12 14:47:58 字数 161 浏览 1 评论 0原文

我正在考虑将序列化数据(通常在 TEXT 列中为 1-3kb)存储在数据库中,但是我担心它是否会占用资源。 在每次页面加载时,都会读取数据,并且在页面加载结束时,如果数据已被更改,则数据会被写回同一字段(考虑使用某种类型的校验和来执行此操作)。

避免这样做会更好吗?或者我应该使用文件代替?

I'm thinking of storing serialized data (usually 1-3kb in a TEXT column) in a database, however I'm concerned whether or not it'll be resource expensive.
At every page load, the data is read, and by the end of the page load, the data is written back into the same field, if it has been altered (thinking of having some type of checksum to do this).

Would it just be better to avoid doing this? Or should I use files instead?

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

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

发布评论

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

评论(1

全部不再 2024-10-19 14:47:58

1)使用数据库比使用文件更好。

2)如果序列化后的数据能够映射到数据库表中就更好了。如果没有,那么你做对了。

请记住,TEXT、BLOB 等列不会与表的其余字段。 对于 BLOB 和 TEXT 数据,信息在内部存储在与行缓冲区不同的内存区域中。

1) Using database is better than using files.

2) If the serialized data can be mapped to a database table, it's better. If not, you're doing it right.

Remember, the TEXT, BLOB, etc columns are not stored inline with the rest of the fields of the table. For BLOB and TEXT data, the information is stored internally in a different area of memory than the row buffer.

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