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.
当我拥有每 30 秒更新/写入 15000 条记录到数据库的集群服务器时,我应该使用 Hibernate 缓存吗?还是我只能直接查询和更新到数据库?
Hibernate 缓存最适合选择操作(使用缓存减少了对数据库的调用次数),但是对于保存或更新操作,缓存不会有太大帮助(同样,提供了一些帮助)...
我建议您不要缓存涉及如此繁重的保存或更新操作的表/pojo,并尝试使用弹簧批处理,这将提高性能。