Btree mapping unlimited length key strings to fixed length hash values
Inheritance: xBplusTreeBytes
Exemplo n.º 1
0
        public static new hBplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength, int CultureId,
                                                int nodesize, int buffersize)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, CultureId, nodesize, buffersize);

            return(new hBplusTree(tree));
        }
Exemplo n.º 2
0
        public static new hBplusTree Initialize(string treefileName, string blockfileName, int PrefixLength, int CultureId,
                                                int nodesize, int buffersize)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength, CultureId, nodesize, buffersize);

            return(new hBplusTree(tree));
        }
Exemplo n.º 3
0
        public static new hBplusTree Initialize(Stream treefile, Stream blockfile, int prefixLength, int cultureId,
                                                int nodesize, int buffersize)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefile, blockfile, prefixLength, cultureId, nodesize, buffersize);

            return(new hBplusTree(tree));
        }
Exemplo n.º 4
0
		public hBplusTree(hBplusTreeBytes tree) : base(tree)
		{
			this.xtree = tree;
		}
Exemplo n.º 5
0
        public static new hBplusTree ReadOnly(string treefileName, string blockfileName)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.ReadOnly(treefileName, blockfileName);

            return(new hBplusTree(tree));
        }
Exemplo n.º 6
0
        public static new hBplusTree ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.ReOpen(treefile, blockfile);

            return(new hBplusTree(tree));
        }
Exemplo n.º 7
0
        public static new hBplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefile, blockfile, KeyLength);

            return(new hBplusTree(tree));
        }
Exemplo n.º 8
0
        public static new hBplusTree Initialize(string treefileName, string blockfileName, int PrefixLength)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength);

            return(new hBplusTree(tree));
        }
Exemplo n.º 9
0
 public hBplusTree(hBplusTreeBytes tree) : base(tree)
 {
     this.xtree = tree;
 }
Exemplo n.º 10
0
 public hBplusTree(hBplusTreeBytes tree)
     : base(tree)
 {
     m_xtree = tree;
 }
Exemplo n.º 11
0
        public static new hBplusTree Initialize(string treefileName, string blockfileName, int prefixLength, int cultureId)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, prefixLength, cultureId);

            return(new hBplusTree(tree));
        }
Exemplo n.º 12
0
 public hBplusTree(hBplusTreeBytes tree) : base(tree)
 {
     m_xtree = tree;
 }