How to Compile Speedb
This page describes how to clone, compile and use the library.
- Recommended:
make static_lib
will compile the Speedb static library (librocksdb.a
) in release mode. make shared_lib
will compile the Speedb shared library (librocksdb.so
) in release mode.
Important: If you plan to run Speedb in production, don't compile using the default
make
or make all
invocations. This will compile Speedb in debug mode, which is much slower than release mode.
make check
will compile Speedb in debug mode and run all the unit tests.make all
will compile Speedb's static library, and all tools and unit tests. These tools depend on gflags, so you'll need to have gflags installed to runmake all
. This will compile Speedb in debug mode. Also, please don't use binaries compiled bymake all
in production.
Last modified 7mo ago