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

sirius.kernel.cache.CacheEvictionTimer Maven / Gradle / Ivy

/*
 * Made with all the love in the world
 * by scireum in Remshalden, Germany
 *
 * Copyright by scireum GmbH
 * http://www.scireum.de - [email protected]
 */

package sirius.kernel.cache;

import sirius.kernel.async.Tasks;
import sirius.kernel.di.std.Part;
import sirius.kernel.di.std.Register;
import sirius.kernel.timer.EveryTenMinutes;

/**
 * Invoked regularly to remove outdated entries from the system caches.
 */
@Register
public class CacheEvictionTimer implements EveryTenMinutes {

    @Part
    private Tasks tasks;

    @Override
    public void runTimer() throws Exception {
        tasks.defaultExecutor().start(this::runEviction);
    }

    private void runEviction() {
        for (ManagedCache cache : CacheManager.getCaches()) {
            CacheManager.LOG.FINE("Running cache eviction for: %s", cache.getName());
            cache.updateStatistics();
            cache.runEviction();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy