Package com.db4o.internal.caching
Class CacheFactory
- java.lang.Object
-
- com.db4o.internal.caching.CacheFactory
-
public class CacheFactory extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CacheFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
Cache4<K,V>new2QCache(int size)
static <V> Cache4<java.lang.Long,V>
new2QLongCache(int size)
static <K,V>
Cache4<K,V>new2QXCache(int size)
static <K,V>
PurgeableCache4<K,V>newLRUCache(int size)
static <V> PurgeableCache4<java.lang.Integer,V>
newLRUIntCache(int size)
static <V> PurgeableCache4<java.lang.Long,V>
newLRULongCache(int size)
-
-
-
Method Detail
-
new2QCache
public static <K,V> Cache4<K,V> new2QCache(int size)
-
new2QLongCache
public static <V> Cache4<java.lang.Long,V> new2QLongCache(int size)
-
new2QXCache
public static <K,V> Cache4<K,V> new2QXCache(int size)
-
newLRUCache
public static <K,V> PurgeableCache4<K,V> newLRUCache(int size)
-
newLRUIntCache
public static <V> PurgeableCache4<java.lang.Integer,V> newLRUIntCache(int size)
-
newLRULongCache
public static <V> PurgeableCache4<java.lang.Long,V> newLRULongCache(int size)
-
-