0
Apache-Ignite Hibernate 2nd level cache가 작동하는지 확인하는 가장 좋은 방법을 알려 줄 수 있습니까? 그리고 어떻게 ?최대 절전 모드 2 차 캐시로 Apache-Ignite 통합 : 점화 캐시를 조사하는 가장 좋은 방법은 무엇입니까?
예 : 1. VisualVM과 2. 최대 절전 모드 통계 로그
나는 EHCache는 함께 일을하고 난 다음과 같이 통계를 얻을 수있는 Viusual VM하여 MBean을 구성 할 수 있었다 :/HIT PUT 인쇄물, 통계를 최대 절전 모드 또한
<bean id="cacheManager"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:/spring/ehcache.xml" />
<property name="shared" value="true" />
</bean>
<!-- JMX for ehcache -->
<bean id="managementService" class="net.sf.ehcache.management.ManagementService"
init-method="init" destroy-method="dispose">
<constructor-arg ref="cacheManager" />
<constructor-arg ref="mbeanServer" />
<constructor-arg index="2" value="true" />
<constructor-arg index="3" value="true" />
<constructor-arg index="4" value="true" />
<constructor-arg index="5" value="true" />
</bean>
<bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean">
<property name="locateExistingServerIfPossible" value="true" />
</bean>
/MISS는 로그에 있습니다.