Package lupos.datastructures.patriciatrie.disk

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


   *            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

Related Classes of lupos.datastructures.patriciatrie.disk.DBTrieSet

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.