]> pd.if.org Git - btree/blob - README.md
Introduce new threads2i.c file to project
[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 three major code sets in the btree source code:
7
8 btree2q.c       Single Threaded/MultiProcess with latching supplied by advisory file locking.  Works with network file systems.
9 threads2h.c     Multi-Threaded/Multi-Process with latching implemented with test & set locks in the btree pages.
10 threads2i.c     Multi-Threaded/Multi-Process with latching implemented with test & set locks in the btree pages with Linux futex system calls for contention.
11
12 The Foster set includes three types of latching:
13
14 Fosterbtreee.c  Multi-Threaded/Single Process with latches hosted by the buffer pool manager
15 Fosterbtreef.c  Multi-Threaded/Multi-Process with latches hosted by a latch manager using the first few pages of the btree.
16 Fosterbtreeg.c  Multi-Threaded/Multi-Process with latches implemented with test & set locks in the btree pages.
17
18 Compilation is achieved on linux or Windows by:
19
20 gcc -D STANDALONE threads2h.c -lpthread
21
22 or
23
24 cl /D STANDALONE threads2h.c
25
26 Please see the project wiki page for documentation