![JAR search and dependency download from the Maven repository](/logo.png)
com.sap.cloud.sdk.cloudplatform.cache.CacheStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caching Show documentation
Show all versions of caching Show documentation
Cloud platform functionality for caching.
/*
* Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.cloud.sdk.cloudplatform.cache;
import lombok.Data;
/**
* POJO implmentation of the {@link CacheStatsMXBean} interface.
*/
@Data
public class CacheStats implements CacheStatsMXBean
{
private final long cacheSize;
private final long hitCount;
private final long missCount;
private final long loadSuccessCount;
private final long loadExceptionCount;
private final long totalLoadTime;
private final long evictionCount;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy