Konstantin Lebedev 1cac5d983d fix: disallow file name too long when writing a file (#4881) 8 months ago
..
README.md 26dbc6c905 move to https://github.com/seaweedfs/seaweedfs 1 year ago
rocksdb_store.go 70a4c98b00 refactor filer_pb.Entry and filer.Entry to use GetChunks() 1 year ago
rocksdb_store_kv.go 26dbc6c905 move to https://github.com/seaweedfs/seaweedfs 1 year ago
rocksdb_store_test.go 1cac5d983d fix: disallow file name too long when writing a file (#4881) 8 months ago
rocksdb_ttl.go 26dbc6c905 move to https://github.com/seaweedfs/seaweedfs 1 year ago

README.md

Prepare the compilation environment on linux

Prepare the compilation environment on mac os

brew install snappy

install rocksdb:

 export ROCKSDB_HOME=/Users/chris/dev/rocksdb

 git clone https://github.com/facebook/rocksdb.git $ROCKSDB_HOME
 pushd $ROCKSDB_HOME
 make clean
 make install-static
 popd

install gorocksdb

export CGO_CFLAGS="-I$ROCKSDB_HOME/include"
export CGO_LDFLAGS="-L$ROCKSDB_HOME -lrocksdb -lstdc++ -lm -lz -lbz2 -lsnappy -llz4 -lzstd"

go get github.com/tecbot/gorocksdb

compile with rocksdb

cd ~/go/src/github.com/seaweedfs/seaweedfs/weed
go install -tags rocksdb