Hibernate 的二级 (L2) 缓存默认实现是哪种实现?
我了解 L2 缓存是什么,但我找不到任何说明默认 L2 缓存实现是什么的文档。
Hibernate 的文档说默认的 impl 是 3.2 版本之前的 Ehcache,但他们没有详细说明现在的默认实现是什么!
我发现另一个人在 Hibernate 论坛中问了同样的问题,但没有人回答:https: //forum.hibernate.org/viewtopic.php?p=2438906
提前感谢您的正确答案!
I understand what the L2 cache is, but I can find no docs that state what the default L2 cache implementation is.
Hibernate's docs say that the default impl was Ehcache prior to version 3.2, but they don't elaborate on what is now the default!
I found another person asking the same question in the Hibernate forums, but no one answered them: https://forum.hibernate.org/viewtopic.php?p=2438906
Thanks ahead of time for a correct answer!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认值为 NoCacheProvider。如果您没有故意指定和设置一些缓存,则不会有缓存,缓存内容的尝试将被忽略。
The default is NoCacheProvider. If you don't intentionally specify and set up some caching, there will be no caching, attempts to cache things are just ignored.