Examples of DBTrieSet


Examples of lupos.datastructures.patriciatrie.disk.DBTrieSet

   *            Base filename for the trie
   * @return the newly created disk based trie set
   * @throws IOException
   */
  public static DBTrieSet createDiskBasedTrieSet(final String fileName) throws IOException {
    return new DBTrieSet(fileName);
  }
View Full Code Here

Examples of lupos.datastructures.patriciatrie.disk.DBTrieSet

   *            The size of a page to be stored on disk
   * @return the newly created disk based trie set
   * @throws IOException
   */
  public static DBTrieSet createDiskBasedTrieSet(final String fileName, final int bufferSize, final int pageSize) throws IOException {
    return new DBTrieSet(fileName, bufferSize, pageSize);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.