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

sirius.kernel.cache.package-info Maven / Gradle / Ivy

Go to download

Provides common core classes and the microkernel powering all Sirius applications

There is a newer version: 12.9.1
Show newest version
/*
 * Made with all the love in the world
 * by scireum in Remshalden, Germany
 *
 * Copyright by scireum GmbH
 * http://www.scireum.de - [email protected]
 */

/**
 * Provides a framework for building and using caches.
 * 

* All caches are created using the {@link sirius.kernel.cache.CacheManager} *

* Using the {@link sirius.kernel.cache.Cache} instead of simple maps provides various benefits. One is, that * a cache as a limited size and will start to drop entries once it is full instead of using an uncontrolled * large part of the heap. Additionally all caches are evicted regularly so that unused entries are removed to * again free central resources. *

* Also, all classes provide details of the current state of a cache, as well as the state of each entry which * permits to monitor and understand the system state. */ package sirius.kernel.cache;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy