]> pd.if.org Git - btree/blob - README.md
Add threadskvi.c to readme file.
[btree] / README.md
1 Btree-source-code
2 =================
3
4 A working project for High-concurrency B-tree source code in C
5
6 There are seven files in the btree source code:
7
8 btree2s.c       Single Threaded/MultiProcess version that removes keys all the way back to an original empty btree, placing removed nodes on a free list.  Operates under either memory mapping or file I/O.  Recommended btrees hosted on network file systems.
9
10 btree2t.c       Single Threaded/MultiProcess version similar to btree2s except that fcntl locking has been replaced by test & set latches in the first few btree pages.  Uses either memory mapping or file I/O.
11
12 btree2u.c               Single Threaded/MultiProcess version that implements a traditional buffer pool manager in the first n pages of the btree file.  The buffer pool accesses its pages with mmap.  Evicted pages are written back to the btree file from the buffer pool pages with pwrite. Recommended for linux.
13
14 btree2v.c               Single Threaded/MultiProcess version based on btree2u that utilizes linux only futex calls for latch contention.
15
16 threads2h.c     Multi-Threaded/Multi-Process with latching implemented by a latch manager with pthreads/SRW latches in the first few btree pages. Recommended for Windows.
17
18 threads2i.c     Multi-Threaded/Multi-Process with latching implemented by a latch manager with test & set latches in the first few btree pages with thread yield system calls during contention.
19
20 threads2j.c     Multi-Threaded/Multi-Process with latching implemented by a latch manager with test & set locks in the first few btree pages with Linux futex system calls during contention.
21
22 threadskv1.c    Multi-Threaded/Multi-Process based on threads2i.c that generalizes key/value storage in the btree pages. The page slots are reduced to 16 or 32 bits, and the value byte storage occurs along with the key storage.
23
24 Compilation is achieved on linux or Windows by:
25
26 gcc -D STANDALONE threads2h.c -lpthread
27
28 or
29
30 cl /Ox /D STANDALONE threads2h.c
31
32 Please see the project wiki page for additional documentation