All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.stats.CacheContainerStats Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.stats;

import org.infinispan.factories.scopes.Scope;
import org.infinispan.factories.scopes.Scopes;

/**
 * Similar to {@link Stats} but in the scope of a single per node CacheContainer.
 *
 * @author Vladimir Blagojevic
 * @since 7.1
 * @deprecated Since 10.1.3. This mixes statistics across unrelated caches so the reported numbers don't have too much
 * relevance. Please use {@link org.infinispan.stats.Stats} or {@link org.infinispan.stats.ClusterCacheStats} instead.
 */
@Scope(Scopes.GLOBAL)
@Deprecated(forRemoval=true, since = "10.1")
public interface CacheContainerStats extends Stats {

   String OBJECT_NAME = "CacheContainerStats";

   double getHitRatio();

   double getReadWriteRatio();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy