1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-19 18:01:03 +02:00
seaweedfs/weed/filer/rocksdb
2022-07-29 00:17:28 -07:00
..
README.md move to https://github.com/seaweedfs/seaweedfs 2022-07-29 00:17:28 -07:00
rocksdb_store.go move to https://github.com/seaweedfs/seaweedfs 2022-07-29 00:17:28 -07:00
rocksdb_store_kv.go move to https://github.com/seaweedfs/seaweedfs 2022-07-29 00:17:28 -07:00
rocksdb_store_test.go move to https://github.com/seaweedfs/seaweedfs 2022-07-29 00:17:28 -07:00
rocksdb_ttl.go move to https://github.com/seaweedfs/seaweedfs 2022-07-29 00:17:28 -07:00

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