GithubHelp home page GithubHelp logo

tempbottle / py-rocksdb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from botify-labs/py-rocksdb

0.0 2.0 0.0 144 KB

Another Python wrapper for RocksDB.

License: Other

C++ 80.24% Python 19.76%

py-rocksdb's Introduction

py-rocksdb: Python bindings for RocksDB Adapted from py-leveldb, which author is Arni Mar Jonsson ([email protected])

This is mostly py-leveldb with references to LevelDB replaced. With a notable difference: a RocksDB.Close method. May not be safe when multithreading.

The constructor also have some differences:

  • removed: block_size, block_restart_interval, block_cache_size
  • added: prepare_for_bulk_load, read_only, compression_type
  • also added, less useful?: disable_data_sync, use_adaptive_mutex

Note: an easy way to crash the library is closing a db with open iterators.

Build Instructions

Build rocksdb:

cd rocksdb
PORTABLE=1 make static_lib EXTRA_CXXFLAGS=-fPIC EXTRA_LDFLAGS=-fPIC
fakeroot make install # Or copy librocksdb.a into py-rocksdb directory; include/ too

Then, the extension itself:

python setup.py build

Then setup.py install or setup.py develop to deploy in your virtualenv.

Example Usage

>>> import rocksdb
>>> db = rocksdb.RocksDB('./db')
>>> db.Put('hello', 'world')
>>> print db.Get('hello')
world
>>> db.Delete('hello')
>>> db.Get('hello')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError
>>> for i in xrange(10):
...   db.Put(str(i), 'string_%s' % i)
...
>>> print list(db.RangeIter(key_from = '2', key_to = '5'))
[('2', 'string_2'), ('3', 'string_3'), ('4', 'string_4'), ('5', 'string_5')]
>>> batch = rocksdb.WriteBatch()
>>> for i in xrange(1000):
...   db.Put(str(i), 'string_%s' % i)
...
>>> db.Write(batch, sync = True)
>>>

py-rocksdb's People

Contributors

ybastide avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.