Skip to content

Commit

Permalink
add src
Browse files Browse the repository at this point in the history
  • Loading branch information
xtlx2000 committed Dec 25, 2013
1 parent 8f09902 commit 2256445
Show file tree
Hide file tree
Showing 79 changed files with 23,713 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
TreeDB
======

a fast key-value storage engine base on Append-Only B+tree
a fast key-value storage engine based on Append-Only B+tree

### description
The typical key-value storage engine based on B+tree is the [Kyoto Cabinet TreeDB](http://fallabs.com/kyotocabinet/), but the Kyoto Cabinet TreeDB use hashDB to store its nodes, so the performance is so bad in the case of massive data, so I developed another treeDB to optimize storage performance.



### feature
### features
- Batch-write to reduce I/O frequency
- Append-Only to guarantee sequence write
- Cache-Oblivous B+ tree to speed up
Expand Down
4 changes: 4 additions & 0 deletions code/AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
STP
----

lpc <[email protected]>
339 changes: 339 additions & 0 deletions code/COPYING

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions code/INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Installation Instructions
*************************

./configure
make
Loading

0 comments on commit 2256445

Please sign in to comment.