bump to 0.6.7
This commit is contained in:
parent
0dbe3eca5b
commit
8b8feb0435
3 changed files with 4 additions and 2 deletions
|
@ -57,7 +57,7 @@ copyright = u'2014, sh'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.6'
|
version = '0.6'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.6.6'
|
release = '0.6.7'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -338,6 +338,7 @@ In this example all keys have a static prefix of len 5. ::
|
||||||
|
|
||||||
opts = rocksdb.Options()
|
opts = rocksdb.Options()
|
||||||
opts.prefix_extractor = StaticPrefix()
|
opts.prefix_extractor = StaticPrefix()
|
||||||
|
opts.allow_concurrent_memtable_write = False
|
||||||
opts.memtable_factory = rocksdb.HashSkipListMemtableFactory()
|
opts.memtable_factory = rocksdb.HashSkipListMemtableFactory()
|
||||||
opts.create_if_missing = True
|
opts.create_if_missing = True
|
||||||
|
|
||||||
|
@ -349,6 +350,7 @@ In this example all keys have a static prefix of len 5. ::
|
||||||
For initial bulk loads the Vector-MemtableFactory makes sense. ::
|
For initial bulk loads the Vector-MemtableFactory makes sense. ::
|
||||||
|
|
||||||
opts = rocksdb.Options()
|
opts = rocksdb.Options()
|
||||||
|
opts.allow_concurrent_memtable_write = False
|
||||||
opts.memtable_factory = rocksdb.VectorMemtableFactory()
|
opts.memtable_factory = rocksdb.VectorMemtableFactory()
|
||||||
opts.create_if_missing = True
|
opts.create_if_missing = True
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -32,7 +32,7 @@ mod1 = Extension(
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="python-rocksdb",
|
name="python-rocksdb",
|
||||||
version='0.6.6',
|
version='0.6.7',
|
||||||
description="Python bindings for RocksDB",
|
description="Python bindings for RocksDB",
|
||||||
keywords='rocksdb',
|
keywords='rocksdb',
|
||||||
author='Ming Hsuan Tu',
|
author='Ming Hsuan Tu',
|
||||||
|
|
Loading…
Reference in a new issue