Default cache used by Hibernate?

后端 未结 2 1942
野趣味
野趣味 2021-02-06 09:26

What is the name of the default cache used by Hibernate? Is there a default cache even, or do you have to add a cache provider in order to take advantage of a cache?

I t

2条回答
  •  走了就别回头了
    2021-02-06 09:54

    No second level cache is enabled in hibernate by default.

    You can always choose one of these cache providers according to your needs:

    • EHCache
    • OSCache
    • SwarmCache
    • Jboss TreeCache
    • JBoss Cache 2

    You can always refer to hibernate documentation to see how to register it.

提交回复
热议问题