go/leveldb
siddontang 81840c211c update read me 2014-05-09 09:46:50 +08:00
..
batch.go add helper function, batch add explicit Close 2014-05-05 17:00:11 +08:00
build_deps.sh update leveldb build bash 2014-05-01 08:58:27 +08:00
db.go iterator add offset and limit, reviterator bug fix 2014-05-07 22:53:24 +08:00
iterator.go iterator first offset bug fix 2014-05-08 09:22:51 +08:00
leveldb_test.go iterator first offset bug fix 2014-05-08 09:22:51 +08:00
readme.md update read me 2014-05-09 09:46:50 +08:00
snapshot.go iterator add offset and limit, reviterator bug fix 2014-05-07 22:53:24 +08:00
util.go update helper function 2014-05-05 17:09:05 +08:00

readme.md

a leveldb wrapper for levigo

simplify use leveldb in go

Install

  • download leveldb and snappy source, uncompress and set source directory in build_deps.sh
  • . ./build_deps.sh

Performance

for better performance, I change some leveldb configurations to build:

  • db/dbformat.h

      // static const int kL0_SlowdownWritesTrigger = 8;
      static const int kL0_SlowdownWritesTrigger = 16;
    
      // static const int kL0_StopWritesTrigger = 12;
      static const int kL0_StopWritesTrigger = 64;
    
  • db/version_set.cc

      //static const int kTargetFileSize = 2 * 1048576;
      static const int kTargetFileSize = 32 * 1048576;
    
      //static const int64_t kMaxGrandParentOverlapBytes = 10 * kTargetFileSize;
      static const int64_t kMaxGrandParentOverlapBytes = 20 * kTargetFileSize;