org.cache2k.io.CacheLoader Maven / Gradle / Ivy
Show all versions of cache2k-api Show documentation
package org.cache2k.io;
/*
* #%L
* cache2k API
* %%
* Copyright (C) 2000 - 2021 headissue GmbH, Munich
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import org.cache2k.DataAwareCustomization;
import org.cache2k.processor.MutableCacheEntry;
import org.cache2k.Cache;
import org.cache2k.Cache2kBuilder;
/**
* Retrieves or generates a value to load into the cache. Using a loader to automatically
* populate the cache is called read through caching. If the cache is primarily used the
* cache data that is expensive to generate or retrieve, using a {@code CacheLoader} has
* several advantages. The usable features with a loader are explained in the following.
*
* Transparent operation: If configured, the loader is invoked implicitly, in case
* there is no value in the cache or it is expired, by the cache methods {@code get()},
* {@code getAll()} or {@code getEntry()} as well as {@link MutableCacheEntry#getValue()}.
*
*
The cache loader can be invoked explicitly via {
* @link Cache#reloadAll(Iterable, CacheOperationCompletionListener)}.
*
*
Blocking: If the loader is invoked by {@link Cache#get} or other methods that allow
* transparent access (see above) concurrent requests on the same key will block until the loading
* is completed. For expired values blocking can be avoided by enabling
* {@link Cache2kBuilder#refreshAhead}. There is no guarantee that the loader is invoked only for
* one key at a time. For example, after {@link Cache#clear()} is called load operations for one
* key may overlap.
*
*
Refresh ahead: By enabling {@link Cache2kBuilder#refreshAhead} the cache will
* call the loader when an entry is expired, eagerly trying to keep the cache contents fresh.
*
*
The alternative loader interface {@link AdvancedCacheLoader} provides the loader
* with the current cache value.
*
*
The {@link AsyncCacheLoader} interface can be used to provide a non blocking asynchronous
* loader implementation.
*
*
If no loader is enabled, the methods {@link Cache#get} and {@link Cache#peek}
* have identical behavior.
*
* @author Jens Wilke
* @see
* Loading / Read-Through - cache2k User Guide
* @see AdvancedCacheLoader
* @see AsyncCacheLoader
* @since 2
*/
@FunctionalInterface
public interface CacheLoader extends DataAwareCustomization {
/**
* Retrieves or generates data based on the key.
*
* From inside this method it is illegal to call methods on the same cache. This
* may cause a deadlock.
*
*
API rationale: This method declares an exception to allow any unhandled
* exceptions of the loader implementation to just pass through. Since the cache
* needs to catch an deal with loader exceptions in any way, this saves otherwise
* necessary try/catch clauses in the loader.
*
* @param key the non-null key to provide the value for.
* @return value to be associated with the key. If the cache does not permit {@code null}
* values a {@link NullPointerException} is thrown, but the expiry policy is
* called before it.
* @throws Exception Unhandled exception from the loader. Exceptions are suppressed or
* wrapped and rethrown via a {@link CacheLoaderException}. Rethrow
*/
V load(K key) throws Exception;
}