2017-03-23 15:13:45 +01:00
Note
2021-08-26 10:43:22 +02:00
=========
2017-04-07 18:18:38 +02:00
The original pyrocksdb (https://pypi.python.org/pypi/pyrocksdb/0.4) has not been updated for long time. I update pyrocksdb to support the latest rocksdb. Please open issues in github if you have any problem.
2017-03-23 15:13:45 +01:00
2021-08-26 10:43:22 +02:00
News (2021/08/26 iFA)
=========
2021-08-26 10:46:12 +02:00
Thanks for @mosquito (https://github.com/mosquito) who coded a github workflow to build static lib automatically.
Python version which lower than 3.7 is not supported anymore.
2021-08-26 10:37:10 +02:00
2021-08-26 10:43:22 +02:00
News (2020/09/03 iFA)
=========
Python version which lower than 3.0 is not supported anymore.
2019-04-19 11:42:30 +02:00
2014-01-13 19:42:31 +01:00
pyrocksdb
=========
2015-08-17 10:44:28 +02:00
Python bindings for RocksDB.
2017-04-23 13:32:41 +02:00
See http://python-rocksdb.readthedocs.io/en/latest/ for a more comprehensive install and usage description.
2015-08-17 10:44:28 +02:00
Quick Install
-------------
Quick install for debian/ubuntu like linux distributions.
.. code-block :: bash
2018-04-17 11:56:22 +02:00
$ apt-get install build-essential libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev liblz4-dev
2015-08-17 10:44:28 +02:00
$ git clone https://github.com/facebook/rocksdb.git
$ cd rocksdb
2017-07-15 16:19:13 +02:00
$ mkdir build && cd build
2017-03-23 18:02:46 +01:00
$ cmake ..
2017-07-17 08:51:56 +02:00
$ make
2018-04-16 12:04:23 +02:00
$ cd ..
$ export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}${CPLUS_INCLUDE_PATH:+:}`pwd` /include/
$ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}`pwd` /build/
$ export LIBRARY_PATH=${LIBRARY_PATH}${LIBRARY_PATH:+:}`pwd` /build/
2015-08-17 10:44:28 +02:00
$ apt-get install python-virtualenv python-dev
$ virtualenv pyrocks_test
$ cd pyrocks_test
$ . bin/active
2017-03-23 18:02:46 +01:00
$ pip install python-rocksdb
2015-08-17 10:44:28 +02:00
Quick Usage Guide
-----------------
.. code-block :: pycon
>>> import rocksdb
>>> db = rocksdb.DB("test.db", rocksdb.Options(create_if_missing=True))
>>> db.put(b'a', b'data')
>>> print db.get(b'a')
b'data'