Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python Rocksdb
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
Python Rocksdb
Commits
8b8feb04
Commit
8b8feb04
authored
8 years ago
by
twmht
Browse files
Options
Downloads
Patches
Plain Diff
bump to 0.6.7
parent
0dbe3eca
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/conf.py
+1
-1
1 addition, 1 deletion
docs/conf.py
docs/tutorial/index.rst
+2
-0
2 additions, 0 deletions
docs/tutorial/index.rst
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
4 additions
and
2 deletions
docs/conf.py
+
1
−
1
View file @
8b8feb04
...
@@ -57,7 +57,7 @@ copyright = u'2014, sh'
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
docs/tutorial/index.rst
+
2
−
0
View file @
8b8feb04
...
@@ -338,6 +338,7 @@ In this example all keys have a static prefix of len 5. ::
...
@@ -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. ::
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
8b8feb04
...
@@ -32,7 +32,7 @@ mod1 = Extension(
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment