Displaying 2 results from an estimated 2 matches for "kayjean".
Did you mean:
kayhan
2004 Dec 15
1
btree function question ?? ( prev charset error , send again )
...gram again and again
step 1 , db file size is 54099968 , get_entry_count is 1000000
step 2 , db file size is 108208128 , get_entry_count is 1000255
step 3 , db file size is 108240896 , get_entry_count is 1000868
file size and get_entry_count grows slowly , Is that ok ??
Thanks
Hao Kuang , Ku
kayjean@gmail.com
--------------------------test code is ------------------------
#include "btree.h"
using namespace std;
int main()
{
Btree table( "test", false );
if( !table.exists() )
table.create(8192);
table.open();
int revision = table.get_open_revision_number();
printf...
2004 Dec 15
0
btree function question ??
Hi
I just want to study the core of btree function. So I hava a small test program.
I try to add different items 1000000 times.
(test1 , test1) (test2 , test2) (test3 , test3) .....(test1000000 , test1000000)
after that I run the program again and again
step 1 , db file size is 54099968 , get_entry_count is 1000000
step 2 , db file size is 108208128 , get_entry_count is 1000255
step 3 , db