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

org.ligoj.bootstrap.resource.system.cache.CacheStatistics Maven / Gradle / Ivy

There is a newer version: 3.1.22
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.bootstrap.resource.system.cache;

import lombok.Getter;
import lombok.Setter;

/**
 * Cache statistics
 */
@Getter
@Setter
public class CacheStatistics {

	private String id;
	private long size;
	private Long hitCount;
	private Long missCount;
	private Float hitPercentage;
	private Float missPercentage;
	private Float averageGetTime;

	/**
	 * The related cache node.
	 */
	private CacheNode node;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy