]> pd.if.org Git - btree/blobdiff - README.md
delete key doesn't work -- see fosterbtreee/f/g.c
[btree] / README.md
index 12a262590a68637d3bf9cd3cd2b3bf664fa11ba6..691c7b7710e00b0c72fd5712c4046f6330e1a46b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,14 +6,20 @@ A working project for High-concurrency B-tree source code in C
 There are three major code sets in the btree source code:
 
 btree2q.c       Single Threaded/MultiProcess with latching supplied by advisory file locking.  Works with network file systems.
+
 threads2h.c     Multi-Threaded/Multi-Process with latching implemented with test & set locks in the btree pages.
 
+threads2i.c     Multi-Threaded/Multi-Process with latching implemented with test & set locks in the btree pages with Linux futex system calls for contention.
+
 The Foster set includes three types of latching:
 
 Fosterbtreee.c  Multi-Threaded/Single Process with latches hosted by the buffer pool manager
+
 Fosterbtreef.c  Multi-Threaded/Multi-Process with latches hosted by a latch manager using the first few pages of the btree.
+
 Fosterbtreeg.c  Multi-Threaded/Multi-Process with latches implemented with test & set locks in the btree pages.
 
+
 Compilation is achieved on linux or Windows by:
 
 gcc -D STANDALONE threads2h.c -lpthread
@@ -22,4 +28,4 @@ or
 
 cl /D STANDALONE threads2h.c
 
-Please see the project home page at code.google.com/p/high-concurrency-btree
+Please see the project wiki page for documentation