'master' is not bound to any rocksdb version
This commit is contained in:
parent
eef60b3ab7
commit
5f8602391b
4 changed files with 5 additions and 7 deletions
|
@ -1,13 +1,12 @@
|
||||||
Changelog
|
Changelog
|
||||||
*********
|
*********
|
||||||
|
|
||||||
Upcoming Version
|
Version 0.3
|
||||||
----------------
|
-----------
|
||||||
|
|
||||||
Target is rocksdb 3.0
|
|
||||||
|
|
||||||
Version 0.2
|
Version 0.2
|
||||||
----------------
|
-----------
|
||||||
|
|
||||||
This version works with RocksDB version 2.8.fb. Now you have access to the more
|
This version works with RocksDB version 2.8.fb. Now you have access to the more
|
||||||
advanced options of rocksdb. Like changing the memtable or SST representation.
|
advanced options of rocksdb. Like changing the memtable or SST representation.
|
||||||
|
|
|
@ -11,7 +11,7 @@ Python bindings to the C++ interface of http://rocksdb.org/ using cython::
|
||||||
print db.get(b"a")
|
print db.get(b"a")
|
||||||
|
|
||||||
|
|
||||||
Tested with python2.7 and python3.3 and RocksDB version 2.8.fb
|
Tested with python2.7 and python3.3 and RocksDB version xxxxx
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
|
@ -12,7 +12,6 @@ For more details consider https://github.com/facebook/rocksdb/blob/master/INSTAL
|
||||||
$ apt-get install build-essential
|
$ apt-get install build-essential
|
||||||
$ apt-get install libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
|
$ apt-get install libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
|
||||||
$ git clone https://github.com/facebook/rocksdb.git
|
$ git clone https://github.com/facebook/rocksdb.git
|
||||||
$ git checkout 2.8.fb
|
|
||||||
$ cd rocksdb
|
$ cd rocksdb
|
||||||
$ make shared_lib
|
$ make shared_lib
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ mod1 = Extension(
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pyrocksdb",
|
name="pyrocksdb",
|
||||||
version='0.2',
|
version='0.3',
|
||||||
description="Python bindings for RocksDB",
|
description="Python bindings for RocksDB",
|
||||||
keywords='rocksdb',
|
keywords='rocksdb',
|
||||||
author='Stephan Hofmockel',
|
author='Stephan Hofmockel',
|
||||||
|
|
Loading…
Reference in a new issue