2014-01-13 19:52:22 +01:00
|
|
|
Welcome to pyrocksdb's documentation!
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
Overview
|
|
|
|
--------
|
|
|
|
Python bindings to the C++ interface of http://rocksdb.org/ using cython::
|
|
|
|
|
|
|
|
import rocksdb
|
|
|
|
db = rocksdb.DB("test.db", rocksdb.Options(create_if_missing=True))
|
2014-01-17 07:42:48 +01:00
|
|
|
db.put(b"a", b"b")
|
|
|
|
print db.get(b"a")
|
2014-01-13 19:52:22 +01:00
|
|
|
|
2014-02-02 17:26:26 +01:00
|
|
|
|
2015-08-30 12:22:52 +02:00
|
|
|
Tested with python2.7 and python3.4 and RocksDB version 3.12
|
2014-01-13 19:52:22 +01:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
|
|
|
Instructions how to install <installation>
|
|
|
|
Tutorial <tutorial/index>
|
|
|
|
API <api/index>
|
2014-04-01 09:13:14 +02:00
|
|
|
Changelog <changelog>
|
2014-01-13 19:52:22 +01:00
|
|
|
|
|
|
|
|
2014-01-21 17:28:38 +01:00
|
|
|
Contributing
|
|
|
|
------------
|
|
|
|
|
|
|
|
Source can be found on `github <https://github.com/stephan-hof/pyrocksdb>`_.
|
|
|
|
Feel free to fork and send pull-requests or create issues on the
|
|
|
|
`github issue tracker <https://github.com/stephan-hof/pyrocksdb/issues>`_
|
|
|
|
|
2014-01-13 19:52:22 +01:00
|
|
|
RoadMap/TODO
|
|
|
|
------------
|
|
|
|
|
2014-02-02 17:29:13 +01:00
|
|
|
No plans so far. Please submit wishes to the github issues.
|
2014-01-13 19:52:22 +01:00
|
|
|
|
|
|
|
Indices and tables
|
|
|
|
==================
|
|
|
|
|
|
|
|
* :ref:`genindex`
|
|
|
|
* :ref:`modindex`
|
|
|
|
* :ref:`search`
|