annotate README @ 360:26c48ea9d896

From Jeffrey Morlan: pst_build_id_ptr reads the Block BTree into a linked list, which pst_getID does a linear scan through. For large PSTs that have millions of blocks, this is extremely slow - almost all time is spent in pst_getID. Since the BTree entries must be in order, this can be dramatically improved by reading into an array and using binary search.
author Carl Byington <carl@five-ten-sg.com>
date Wed, 06 Jul 2016 10:21:08 -0700
parents 61be2c04d6ab
children 3f83feface7a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
1 Starting with an unpacked tarball, try this:
0
6b1b602514db Initial revision
carl
parents:
diff changeset
2
18
69ab1d8b3293 switch to automake/autoconf
carl
parents: 0
diff changeset
3 ./configure
69ab1d8b3293 switch to automake/autoconf
carl
parents: 0
diff changeset
4 make
69ab1d8b3293 switch to automake/autoconf
carl
parents: 0
diff changeset
5 su
69ab1d8b3293 switch to automake/autoconf
carl
parents: 0
diff changeset
6 make install
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
7
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
8
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
9 Starting with a mercurial working directory, try this:
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
10
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
11 make -f *cvs
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
12 (cd xml; make; make distclean)
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
13 make distcheck
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 18
diff changeset
14