MCPcopy
hub / github.com/ledisdb/ledisdb

github.com/ledisdb/ledisdb @v0.6 sqlite

repository ↗ · DeepWiki ↗ · release v0.6 ↗
1,483 symbols 5,306 edges 133 files 56 documented · 4%
README

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.

Links

Caveat

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

Requirement

  • Go version >= 1.6

Related Repos

Donate

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

PayPal 微信
[

Feedback

  • Gmail: siddontang@gmail.com

Extension points exported contracts — how you extend this code

BatchDataReplay (Interface)
(no doc) [9 implementers]
store/writebatch.go
ISnapshot (Interface)
(no doc) [8 implementers]
store/driver/driver.go
LogStore (Interface)
(no doc) [2 implementers]
rpl/store.go
Slice (Interface)
(no doc)
store/slice.go
NewLogEventHandler (FuncType)
(no doc)
ledis/replication.go
CommandFunc (FuncType)
(no doc)
server/command.go
AuthMethod (FuncType)
(no doc)
config/config.go
ISliceGeter (Interface)
(no doc) [7 implementers]
store/driver/driver.go

Core symbols most depended-on inside this repo

String
called by 159
store/driver/store.go
register
called by 146
server/command.go
Unlock
called by 123
ledis/batch.go
Lock
called by 112
ledis/batch.go
Close
called by 108
store/driver/driver.go
writeInteger
called by 80
server/client.go
Set
called by 65
ledis/t_kv.go
checkKeySize
called by 60
ledis/t_kv.go

Shape

Method 832
Function 533
Struct 91
Interface 17
TypeAlias 6
FuncType 4

Languages

Go98%
Python2%

Modules by API surface

ledis/t_zset.go52 symbols
rpl/file_io.go51 symbols
store/rocksdb/options.go50 symbols
ledis/t_list.go41 symbols
ledis/t_kv.go40 symbols
store/driver/driver.go35 symbols
server/script.go34 symbols
ledis/t_set.go34 symbols
store/iterator.go33 symbols
server/cmd_zset.go33 symbols
rpl/file_table.go31 symbols
ledis/t_hash.go30 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

For agents

$ claude mcp add ledisdb \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact