'master' is not bound to any rocksdb version

This commit is contained in:
hofmockel 2014-04-29 17:55:01 +02:00
parent eef60b3ab7
commit 5f8602391b
4 changed files with 5 additions and 7 deletions

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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',