
com.maxifier.mxcache.DependencyTracking Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mxcache-runtime Show documentation
Show all versions of mxcache-runtime Show documentation
Constains all classes necessary for launching a MxCache-instrumentated application
/*
* Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
*/
package com.maxifier.mxcache;
/**
* Dependency tracking type
*
* @author Alexander Kochurov ([email protected])
*/
public enum DependencyTracking {
/**
* Use inherited value (e.g. taken from parent or from defaults)
*/
DEFAULT,
/** No dependency tracking */
NONE,
/**
* Caches of all instances of this cache will be cleaned at once.
*
* It's much cheaper to have static dependency tracking.
* If there are a lot of instances with cache and refresh takes quick consider using STATIC tracking
* to improve performance.
*/
STATIC,
/**
* Each instance has it's own dependency tracking, if a single cache is marked as dirty only this cache
* will be cleaned.
*/
INSTANCE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy