# gorocksdb **Repository Path**: tang_dahe/gorocksdb ## Basic Information - **Project Name**: gorocksdb - **Description**: gorocksdb is a Go wrapper for RocksDB - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-13 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gorocksdb, a Go wrapper for RocksDB [![Build Status](https://travis-ci.org/tecbot/gorocksdb.svg)](https://travis-ci.org/tecbot/gorocksdb) [![GoDoc](https://godoc.org/github.com/tecbot/gorocksdb?status.svg)](http://godoc.org/github.com/tecbot/gorocksdb) ## Install You'll need to build [RocksDB](https://github.com/facebook/rocksdb) v5.16+ on your machine. After that, you can install gorocksdb using the following command: CGO_CFLAGS="-I/path/to/rocksdb/include" \ CGO_LDFLAGS="-L/path/to/rocksdb -lrocksdb -lstdc++ -lm -lz -lbz2 -lsnappy -llz4 -lzstd" \ go get github.com/tecbot/gorocksdb Please note that this package might upgrade the required RocksDB version at any moment. Vendoring is thus highly recommended if you require high stability. *The [embedded CockroachDB RocksDB](https://github.com/cockroachdb/c-rocksdb) is no longer supported in gorocksdb.*