| java.lang.Object com.hp.hpl.jena.util.cache.CacheManager
CacheManager | public class CacheManager (Code) | | A factory for creating cache objects
author: bwm |
Method Summary | |
public static Cache | createCache(String type, String name, int size) Create a new cache
Parameters: type - The type of cache to create. |
createCache | public static Cache createCache(String type, String name, int size)(Code) | | Create a new cache
Parameters: type - The type of cache to create. This should be oneof the standard cache types defined in this class. Parameters: name - A name for the cache. This should be unique andmay be used to identify the cache in logging andother operations. To ensure uniqueness it issuggested that cache's be given names similar tofull java names such ascom.hp.hpl.jena.graph.Node.NodeCache. Parameters: size - Teh size of the cache in terms of the number ofobjects it can store. a newly created cache object |
|
|