| Package | Description |
|---|---|
| org.caffinitas.ohc | |
| org.caffinitas.ohc.chunked |
Chunked memory allocation off-heap implementation.
|
| org.caffinitas.ohc.linked |
Linked memory entry off-heap implementation.
|
| Modifier and Type | Method and Description |
|---|---|
V |
OHCache.getWithLoader(K key,
CacheLoader<K,V> loader)
|
V |
OHCache.getWithLoader(K key,
CacheLoader<K,V> loader,
long timeout,
TimeUnit unit)
|
Future<V> |
OHCache.getWithLoaderAsync(K key,
CacheLoader<K,V> loader)
Shortcut to call
OHCache.getWithLoader(Object, CacheLoader, long, TimeUnit) using the default entry
time-to-live. |
Future<V> |
OHCache.getWithLoaderAsync(K key,
CacheLoader<K,V> loader,
long expireAt)
Shortcut to call
OHCache.getWithLoader(Object, CacheLoader, long, TimeUnit) using the default entry
time-to-live. |
| Modifier and Type | Method and Description |
|---|---|
V |
OHCacheChunkedImpl.getWithLoader(K key,
CacheLoader<K,V> loader) |
V |
OHCacheChunkedImpl.getWithLoader(K key,
CacheLoader<K,V> loader,
long timeout,
TimeUnit unit) |
Future<V> |
OHCacheChunkedImpl.getWithLoaderAsync(K key,
CacheLoader<K,V> loader) |
Future<V> |
OHCacheChunkedImpl.getWithLoaderAsync(K key,
CacheLoader<K,V> loader,
long expireAt) |
| Modifier and Type | Method and Description |
|---|---|
V |
OHCacheLinkedImpl.getWithLoader(K key,
CacheLoader<K,V> loader) |
V |
OHCacheLinkedImpl.getWithLoader(K key,
CacheLoader<K,V> loader,
long timeout,
TimeUnit unit) |
Future<V> |
OHCacheLinkedImpl.getWithLoaderAsync(K key,
CacheLoader<K,V> loader) |
Future<V> |
OHCacheLinkedImpl.getWithLoaderAsync(K key,
CacheLoader<K,V> loader,
long expireAt) |
Copyright © 2014–2021 Robert Stupp, Koeln, Germany, robert-stupp.de. All rights reserved.