Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序继续使用每个请求更新各种记录,假设 4/3 如果每个请求 4 选择然后执行 3 更新查询。
这些是仅用于记录的简单更新,假设计算来自每个人等的请求,例如field= field+ 1 或 - 1 或 time() 等
field
请建议减少这种负载的最佳方法,我正在考虑将这些更新存储在文本文件中一段时间,然后将其刷新到数据库一次,以减少查询次数。
我的方法正确吗?对于这种工作来说,简单的文本文件更安全吗?我应该怎么办?数据库临时表在脚本执行时也被删除。