Go to file
yeyuanjie 5d7fbfcd27 seek
2019-12-26 17:03:51 +08:00
cmd fix vet and lint (#337) 2018-03-29 20:33:36 +08:00
config Config: Fix quotes at Readonly method (#360) 2019-02-02 21:41:19 +08:00
doc add redis-compatible HSCAN/SSCAN/ZSCAN commands (#321) 2017-10-30 16:39:51 +08:00
etc use vendor and do clean up. (#241) 2016-05-01 23:33:02 +08:00
ledis seek 2019-12-26 17:03:51 +08:00
rpl fix LevelDB CGO panic (#285) 2017-03-18 14:17:37 +08:00
server Add server.ledisdb_version to the INFO command (#343) 2018-04-17 22:13:38 +08:00
store Use latest (1.20+) LevelDB (#326) 2017-11-27 08:51:18 +08:00
tools Use latest (1.20+) LevelDB (#326) 2017-11-27 08:51:18 +08:00
upgrade/ledis-upgrade-ttl format with goimports 2015-05-04 22:42:28 +08:00
vendor add clear vendor script (#338) 2018-03-30 09:43:38 +08:00
.gitignore add linenoise build tag 2015-03-12 11:32:33 +08:00
.travis.yml Bump Go versions (#358) 2018-10-29 08:41:58 +08:00
clear_vendor.sh add clear vendor script (#338) 2018-03-30 09:43:38 +08:00
dev.sh Feature: Pure Go Lua (VM) (#291) 2017-04-15 21:51:03 +08:00
Dockerfile Fixes to Dockerfile (#329) 2018-02-02 07:29:58 +01:00
entrypoint.sh Add Dockerfile (#327) 2017-11-28 08:50:33 +08:00
Gopkg.lock Dep for dependency management, newer go in CI, dependency updates (#325) 2017-11-24 09:11:56 +08:00
Gopkg.toml Dep for dependency management, newer go in CI, dependency updates (#325) 2017-11-24 09:11:56 +08:00
LICENSE Initial commit 2014-04-29 17:43:09 -07:00
Makefile add clear vendor script (#338) 2018-03-30 09:43:38 +08:00
README.md Feature: Pure Go Lua (VM) (#291) 2017-04-15 21:51:03 +08:00

LedisDB

Build Status

Ledisdb is a high-performance NoSQL database, similar to Redis, written in Go. It supports many data structures including kv, list, hash, zset, set.

LedisDB now supports multiple different databases as backends.

You must run ledis-upgrade-ttl before using LedisDB version 0.4, I fixed a very serious bug for key expiration and TTL.

Features

  • Rich data structure: KV, List, Hash, ZSet, Set.
  • Data storage is not limited by RAM.
  • Various backends supported: LevelDB, goleveldb, RocksDB, RAM.
  • Supports Lua scripting.
  • Supports expiration and TTL.
  • Can be managed via redis-cli.
  • Easy to embed in your own Go application.
  • HTTP API support, JSON/BSON/msgpack output.
  • Replication to guarantee data safety.
  • Supplies tools to load, dump, and repair database.
  • Supports cluster, use xcodis
  • Authentication (though, not via http)

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

#set build and run environment 
source dev.sh

make
make test

LevelDB support

  • Install leveldb and snappy.

    LedisDB supplies a simple script to install leveldb and snappy:

      sudo sh tools/build_leveldb.sh
    

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

    LedisDB uses the modified LevelDB for better performance. Details.

    You can easily use other LevelDB versions (like Hyper LevelDB or Basho LevelDB) instead, as long as the header files are in include/leveldb, not include/hyperleveldb or any other location.

  • Set LEVELDB_DIR and SNAPPY_DIR to the actual install path in dev.sh.

  • make clean && make

RocksDB support

  • Install rocksdb(5.1+)(make shared_lib) and snappy first.

    LedisDB has not yet supplied a simple script to install.

  • Set ROCKSDB_DIR and SNAPPY_DIR to the actual install path in dev.sh.

  • make clean && make

If the RocksDB API changes, LedisDB may not build successfully. LedisDB currently supports RocksDB version 5.1 or later.

Choose store database

LedisDB now supports goleveldb, leveldb, rocksdb, and RAM. It will use goleveldb by default.

Choosing a store database to use is very simple.

  • Set in server config file

      db_name = "leveldb"
    
  • Set in command flag

      ledis-server -config=/etc/ledis.conf -db_name=leveldb
    

    Flag command set will overwrite config setting.

Lua support

Lua is supported using gopher-lua, a Lua VM, completely written in Go.

Configuration

LedisDB uses toml as the configuration format. The basic configuration ./etc/ledis.conf in LedisDB source may help you.

If you don't use a configuration, LedisDB will use the default for you.

Server Example

//set run environment if not
source dev.sh

./bin/ledis-server -config=/etc/ledis.conf

//another shell
./bin/ledis-cli -p 6380

ledis 127.0.0.1:6380> set a 1
OK
ledis 127.0.0.1:6380> get a
"1"

//use curl
curl http://127.0.0.1:11181/SET/hello/world
→ {"SET":[true,"OK"]}

curl http://127.0.0.1:11181/0/GET/hello?type=json
→ {"GET":"world"}

Package Example

import (
  lediscfg "github.com/siddontang/ledisdb/config"
  "github.com/siddontang/ledisdb/ledis"
)

# Use Ledis's default config
cfg := lediscfg.NewConfigDefault()
l, _ := ledis.Open(cfg)
db, _ := l.Select(0)

db.Set(key, value)

db.Get(key)

Replication Example

Set slaveof in config or dynamiclly

ledis-cli -p 6381 

ledis 127.0.0.1:6381> slaveof 127.0.0.1 6380
OK

Cluster support

LedisDB uses a proxy named xcodis to support cluster.

Benchmark

See benchmark for more.

Todo

See Issues todo

Client

See Clients to find or contribute LedisDB client.

Caveat

  • Changing the backend database at runtime is very dangerous. Data validation is not guaranteed if this is done.

Requirement

  • Go version >= 1.6

Donate

If you like the project and want to buy me a cola, you can through:

PayPal 微信
[

Feedback