A high performance NoSQL Database Server powered by Go
Go to file
siddontang 8038a54cdb add inclusive flag for scan 2014-05-23 13:06:44 +08:00
cmd refactor, split ledis pkg to ledis and server 2014-05-16 15:03:23 +08:00
etc update config format 2014-05-16 09:42:27 +08:00
ledis add inclusive flag for scan 2014-05-23 13:06:44 +08:00
server remove scan cmd, we implement a little diff 2014-05-23 12:39:56 +08:00
.gitignore rename to ledisdb, update 2014-05-09 14:49:22 +08:00
LICENSE Initial commit 2014-04-29 17:43:09 -07:00
README.md update 2014-05-22 08:52:38 +08:00
README_CN.md add english read me 2014-05-22 08:52:21 +08:00
benchmark.md rename to ledisdb, update 2014-05-09 14:49:22 +08:00
bootstrap.sh use go-log instead go lib log 2014-05-23 10:17:09 +08:00
build_leveldb.sh refactor, support use embedded ledisdb 2014-05-15 14:19:48 +08:00
dev.sh refactor, support use embedded ledisdb 2014-05-15 14:19:48 +08:00

README.md

ledisdb

Ledisdb is a high performance nosql like redis based on leveldb written by go. It's supports some advanced data structure like kv, list, hash and zset.

Build and Install

  • Create a workspace and checkout ledisdb source

      mkdir $WORKSPACE
      cd $WORKSPACE
      git clone git@github.com:siddontang/ledisdb.git src/github.com/siddontang/ledisdb
    
      cd src/github.com/siddontang/ledisdb
    
  • Install leveldb and snappy, if you have installed, skip.

    I supply a simple shell to install leveldb and snappy, you can use:

      sh build_leveldb.sh
    

    It will default install leveldb at /usr/local/leveldb and snappy at /usr/local/snappy

  • Change LEVELDB_DIR and SNAPPY_DIR to real install path in dev.sh.

  • Then:

      . ./bootstap.sh 
      . ./dev.sh
    
      go install ./...
    

Run

./ledis-server -config=/etc/ledis.json

Benchmark

See benchmark.md for more.

Todo

  • Expire + TTL
  • Replication
  • Admin

Feedback

Gmail: siddontang@gmail.com