public class CacheMapBuilder
extends java.lang.Object
Constructor and Description |
---|
CacheMapBuilder() |
Modifier and Type | Method and Description |
---|---|
static <K,V> com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap<K,V> |
buildConcurrentLRUCacheMap(int _maxSize)
Creates a new com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap with the given maximum size.
|
static <K,V> java.util.LinkedHashMap<K,V> |
buildLRUCacheMap(int _maxSize)
Creates a new LinkedHashMap with the given maximum size.
|
public static <K,V> com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap<K,V> buildConcurrentLRUCacheMap(int _maxSize)
CacheMapBuilder.<Long, String>buildConcurrentLRUCacheMap(10)
._maxSize
- maximum allowed cache size, value > 0public static <K,V> java.util.LinkedHashMap<K,V> buildLRUCacheMap(int _maxSize)
buildConcurrentLRUCacheMap(int)
instead._maxSize
- maximum allowed cache size, value > 0Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.