Package org.openrdf.sail.nativerdf.datastore

Examples of org.openrdf.sail.nativerdf.datastore.DataStore


  public ValueStore(File dataDir, boolean forceSync)
    throws IOException
  {
    super();
    dataStore = new DataStore(dataDir, FILENAME_PREFIX, forceSync);

    valueCache = new LRUCache<Integer, NativeValue>(VALUE_CACHE_SIZE);
    valueIDCache = new LRUCache<Value, Integer>(VALUE_ID_CACHE_SIZE);
    namespaceCache = new LRUCache<Integer, String>(NAMESPACE_CACHE_SIZE);
    namespaceIDCache = new LRUCache<String, Integer>(NAMESPACE_ID_CACHE_SIZE);
View Full Code Here


  public ValueStore(File dataDir, boolean forceSync)
    throws IOException
  {
    super();
    dataStore = new DataStore(dataDir, FILENAME_PREFIX, forceSync);

    valueCache = new LRUCache<Integer, NativeValue>(VALUE_CACHE_SIZE);
    valueIDCache = new LRUCache<Value, Integer>(VALUE_ID_CACHE_SIZE);
    namespaceCache = new LRUCache<Integer, String>(NAMESPACE_CACHE_SIZE);
    namespaceIDCache = new LRUCache<String, Integer>(NAMESPACE_ID_CACHE_SIZE);
View Full Code Here

TOP

Related Classes of org.openrdf.sail.nativerdf.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.