我想使用 Infinispan 来缓存重复调用的查询。
我按照本教程为此设置了 Hibernate:
使用 Infinispan 作为 JPA-Hibernate 二级缓存提供程序。
我遵循了每一步,虽然日志显示 Infinispan 用作二级缓存并启用了查询缓存,但似乎没有缓存任何查询。
我还尝试了本教程: Infinispan as Hibernate 2nd-Level Cache in JBoss AS 5.x,也没有成功。
以下是我所做的配置的摘录:
(orm.xml)
<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"
version="1.0">
<named-query name="retrievePolicySet">
<query>from PSTRepresentationType p where p.realm=? AND p.policySetType.policySetId=?</query>
<hint name="org.hibernate.cacheable" value="true" />
</named-query>
<named-query name="retrievePolicySetList">
<query>from PSTRepresentationType p where p.realm=?</query>
<hint name="org.hibernate.cacheable" value="true" />
</named-query>
</entity-mappings>
(持久性.xml)
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.cache.use_second_level_cache" value="true" />
<!-- Enables the query cache. Individual queries still have to be set cachable. -->
<property name="hibernate.cache.use_query_cache" value="true" />
<property name="hibernate.cache.region.factory_class" value="org.hibernate.cache.infinispan.InfinispanRegionFactory" />
<property name="hibernate.cache.infinispan.statistics" value="true" />
</properties>
我正在使用 JBoss EAP 5.1 和 hibernate-infinispan 3.5.6-Final。