Package uk.ac.open.kmi.smartproducts.sesame.sail.datastore

Examples of uk.ac.open.kmi.smartproducts.sesame.sail.datastore.DataStore


  public ValueStore(File dataDir, boolean forceSync, int valueCacheSize, int valueIDCacheSize,
      int namespaceCacheSize, int namespaceIDCacheSize)
    throws IOException
  {
    super();
    dataStore = new DataStore(dataDir, FILENAME_PREFIX, forceSync);

    valueCache = new LRUCache<Integer, NativeValue>(valueCacheSize);
    valueIDCache = new LRUCache<NativeValue, Integer>(valueIDCacheSize);
    namespaceCache = new LRUCache<Integer, String>(namespaceCacheSize);
    namespaceIDCache = new LRUCache<String, Integer>(namespaceIDCacheSize);
View Full Code Here

TOP

Related Classes of uk.ac.open.kmi.smartproducts.sesame.sail.datastore.DataStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.