使用 Hibernate 时如何确定最佳准备语句缓存大小
AFAIK,Hibernate 在将所有 sql 发送到数据库之前将其转换为准备好的语句形式。调整应用程序时,准备好的语句缓存的大小可能是一个重要因素。鉴于 Hibernate 在“幕后”创建准备好的语句,如何确定使用 Hibernate 时的最佳值。
AFAIK, Hibernate transforms all sql to prepared statement form before issuing it to the database. When tuning the application, the size of prepared statement cache can be an important factor. How to determine the optimum value when using Hibernate, given that it creates prepared statements “under the hood”.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,在让应用程序正常运行一段时间后,您会尝试从数据库获取此类统计信息。
您还可以启用 统计信息 和 在Hibernate中配置SQL日志并分析获得的数据。
Generally you'd try to obtain such statistics from your database after letting the application run its normal course for a certain period of time.
You can also enable statistics and SQL logging in Hibernate configuration and analyze the data obtained.