持久更改的最快方法
在我的网络应用程序中,数据库有一个 blob(一个 xml 文件)。允许用户通过 Web 界面更改 blob。我将 blob 以 html 形式显示,然后用户可以更改一些值并将其保存回来。所以用户提交请求有一个数据库保存。我可以将条目保存到缓存中以加快提交请求吗?但这样就有可能失去更改吗?将 blob 持久保存在数据库中的最快方法是什么?
in my web app the database has a blob(an xml file). The user is allowed to change the blob through a web interface. I take the blob show it in a html form, then the user can change some values and save it back. So the user submit request has a db save. Can I save the entry to a cache to speed up the submit request? But then there is a chance of loosing the changes? What is the fastest way to persist the blob in db?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将保存排队以供稍后使用。虽然用户有可能会丢失所做的更改,但与带来的好处相比,这是可以忽略不计的。
You can queue the save for a later time. While there is a some chance that the user will lose his changes it is negligible compare to the benefits.