Btree mapping unlimited length key strings to fixed length hash values
Inheritance: xBplusTreeBytes
コード例 #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));
        }
コード例 #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));
        }
コード例 #3
0
ファイル: hBplusTree.cs プロジェクト: tkggand/BplusDotNet
        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));
        }
コード例 #4
0
ファイル: hBplusTree.cs プロジェクト: anukat2015/sones
		public hBplusTree(hBplusTreeBytes tree) : base(tree)
		{
			this.xtree = tree;
		}
コード例 #5
0
        public static new hBplusTree ReadOnly(string treefileName, string blockfileName)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.ReadOnly(treefileName, blockfileName);

            return(new hBplusTree(tree));
        }
コード例 #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));
        }
コード例 #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));
        }
コード例 #8
0
        public static new hBplusTree Initialize(string treefileName, string blockfileName, int PrefixLength)
        {
            hBplusTreeBytes tree = hBplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength);

            return(new hBplusTree(tree));
        }
コード例 #9
0
 public hBplusTree(hBplusTreeBytes tree) : base(tree)
 {
     this.xtree = tree;
 }
コード例 #10
0
ファイル: hBplusTree.cs プロジェクト: petlof/BplusDotNet
 public hBplusTree(hBplusTreeBytes tree)
     : base(tree)
 {
     m_xtree = tree;
 }
コード例 #11
0
ファイル: hBplusTree.cs プロジェクト: tkggand/BplusDotNet
        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));
        }
コード例 #12
0
ファイル: hBplusTree.cs プロジェクト: tkggand/BplusDotNet
 public hBplusTree(hBplusTreeBytes tree) : base(tree)
 {
     m_xtree = tree;
 }