Click or drag to resize

LocalCacheLoad Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Indicates to the cache that the specified key should be loaded into the cache, if it is not already in the cache.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual void Load(
	Object key
)

Parameters

key
Type: SystemObject
The key to request to be loaded.
Remarks
This provides a means to "pre-load" a single entry into the cache using the cache's loader.

If a valid entry with the specified key already exists in the cache, or if the cache does not have a loader, then this method has no effect.

An implementation may perform the load operation asynchronously.

See Also