2
respostas

queryCacheHitCount e queryCacheMissCount não retornam nada

O código abaixo só retorna o connectCount. Os dois primeiros sempre retornam o valor = 0.

<tr>
    <td>${statistics.queryCacheHitCount}</td>
    <td>${statistics.queryCacheMissCount}</td> 
    <td>${statistics.connectCount}</td>
</tr>
2 respostas

Percebi que substituindo pelos métodos abaixo, retornou as estatísticas correspondentes. Isso está correto?

<tr>
    <td>${statistics.secondLevelCacheHitCount}</td>
    <td>${statistics.secondLevelCacheMissCount}</td>
    <td>${statistics.connectCount}</td>
</tr>

Oi DAUSTHER

Como você fez a recuperação desse objeto statistics? Se for algo parecido com abaixo, está correto:

Statistics stats = sessionFactory.getStatistics();
stats.setStatisticsEnabled(true);
SecondLevelCacheStatistics cacheStats = stats.getSecondLevelCacheStatistics(cacheRegion);