All Projects → deslum → Cssdbpy

deslum / Cssdbpy

Licence: bsd-2-clause
Fastest SSDB client written on Cython. Production ready

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Cssdbpy

SwiftStore
Key-Value store for Swift backed by LevelDB
Stars: ✭ 119 (+50.63%)
Mutual labels:  key-value, leveldb
Ardb
A redis protocol compatible nosql, it support multiple storage engines as backend like Google's LevelDB, Facebook's RocksDB, OpenLDAP's LMDB, PerconaFT, WiredTiger, ForestDB.
Stars: ✭ 1,707 (+2060.76%)
Mutual labels:  key-value, leveldb
Typedvalue
Tiny library to simplify access to SharedPreferences, Bundle or any other key-value storage
Stars: ✭ 18 (-77.22%)
Mutual labels:  key-value
Cutedb
A slick BTree on disk based key value store implemented in pure Go
Stars: ✭ 67 (-15.19%)
Mutual labels:  key-value
Level
Fast & simple storage. A Node.js-style LevelDB wrapper for Node.js, Electron and browsers.
Stars: ✭ 1,071 (+1255.7%)
Mutual labels:  leveldb
Keyvast
KeyVast - A key value store
Stars: ✭ 33 (-58.23%)
Mutual labels:  key-value
Cucache
Fast PUT/GET/DELETE in-memory key-value store for lookaside caching
Stars: ✭ 63 (-20.25%)
Mutual labels:  key-value
Pwned
Simple C++ code for simple tasks
Stars: ✭ 16 (-79.75%)
Mutual labels:  leveldb
Ejdb
🏂 EJDB 2.0 — Embeddable JSON Database engine C library. Simple XPath like query language (JQL). Websockets / Android / iOS / React Native / Flutter / Java / Dart / Node.js bindings. Docker image.
Stars: ✭ 1,187 (+1402.53%)
Mutual labels:  key-value
Papyrusjs
papyrus.js renders maps of Minecraft: Bedrock Edition worlds using node.js, LevelDB and leaflet.
Stars: ✭ 50 (-36.71%)
Mutual labels:  leveldb
Zanredisdb
Yet another distributed kvstore support redis data and index. moved to: https://github.com/youzan/ZanRedisDB
Stars: ✭ 64 (-18.99%)
Mutual labels:  key-value
Microblob
Serve millions of JSON documents via HTTP.
Stars: ✭ 45 (-43.04%)
Mutual labels:  key-value
Azure.data.wrappers
Azure Storage Simplified
Stars: ✭ 34 (-56.96%)
Mutual labels:  key-value
Claudb
ClauDB is a REDIS implementation in Java
Stars: ✭ 64 (-18.99%)
Mutual labels:  key-value
Xodus
Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub.
Stars: ✭ 864 (+993.67%)
Mutual labels:  key-value
Gun Level
LevelDB storage plugin for gunDB
Stars: ✭ 69 (-12.66%)
Mutual labels:  leveldb
Nova Key Value
Nova Key Value Field
Stars: ✭ 18 (-77.22%)
Mutual labels:  key-value
Tmlibs
DEPRECATED: Merged into https://github.com/tendermint/tendermint under `libs`
Stars: ✭ 45 (-43.04%)
Mutual labels:  leveldb
Goshare
Go Share your TimeSeries/NameSpace/KeyVal DataStore (using leveldb) over HTTP &/or ZeroMQ
Stars: ✭ 59 (-25.32%)
Mutual labels:  leveldb
Pumpkindb
Immutable Ordered Key-Value Database Engine
Stars: ✭ 1,219 (+1443.04%)
Mutual labels:  key-value

cssdbpy

.. image:: https://img.shields.io/pypi/v/cssdbpy.svg?maxAge=2592000?style=flat :target: https://pypi.python.org/pypi/cssdbpy/

.. image:: https://img.shields.io/badge/license-BSD-blue.svg :target: https://raw.githubusercontent.com/deslum/cssdbpy/master/LICENSE

.. image:: https://img.shields.io/badge/python-2.x-yellow.svg :target: https://pypi.python.org/pypi/cssdbpy/

.. image:: https://img.shields.io/badge/python-3.x-green.svg :target: https://pypi.python.org/pypi/cssdbpy/

| Cssdbpy is SSDB client written on Cython. Faster standard SSDB client. | SSDB a high performance NoSQL database supporting many data structures, an alternative to Redis. http://ssdb.io/

Install

.. code-block:: bash

pip install cssdbpy

or

.. code-block:: bash

pip install https://github.com/deslum/cssdbpy/archive/master.zip

Example

.. code-block:: python

from cssdbpy import Connection from time import time import md5

if name == 'main': conn = Connection('127.0.0.1', 8888) for i in xrange(0, 1000): md5word = md5.new('word{}'.format(i)).hexdigest() create = conn.execute('hset','words', md5word, int(time())) value = conn.execute('hget','words', md5word) exists = conn.execute('hexists','words', md5word) delete = conn.execute('hdel','words', md5word) print md5word, value, create, exists, delete print conn.execute('hscan', 'words', '', '', 100) conn.execute('hclear','words')

Documentation

http://cssdbpy.readthedocs.io/en/master/

Benchmark

MacBook Pro 2012 2,5 GHz Intel Core i5 4 ГБ 1600 МГц DDR3 80000 key/value fields

.. image:: benchmark/bench.png :height: 100px :width: 200px :scale: 50% :alt: alternate text :align: center

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].