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

rs.mail.templates.cache.CacheStrategy Maven / Gradle / Ivy

package rs.mail.templates.cache;

/**
 * Defines possible Caching strategies.
 * 
 * @author ralph
 *
 */
public enum CacheStrategy {

	/** Least recently used - cleanup entries that are not used for longest time */
	LRU,
	/** Least frequently used - cleanup entries that are used the least */
	LFU,
	/** First In First Out - cleanup entries that are oldest */
	FIFO;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy