Commit graph

179 commits

Author SHA1 Message Date
iFA
0f66d77c6c
Update options.pxd 2020-08-31 11:35:52 +02:00
iFA
2f971e9caa
Create statistics.pxd 2020-08-31 11:34:25 +02:00
iFA
4186979026
Update table_factory.pxd 2020-08-31 11:31:48 +02:00
iFA
3f4e75f119
Update _rocksdb.pyx 2020-08-31 11:24:28 +02:00
iFA
4bc9039ccc
Update _rocksdb.pyx 2020-08-07 08:25:16 +02:00
iFA
7750e765b8
Update _rocksdb.pyx 2020-07-19 14:21:35 +02:00
iFA
a3848007e6
Update db.pxd 2020-07-19 14:21:03 +02:00
iFA
8865320820
Update table_factory.pxd 2020-05-18 17:51:39 +02:00
iFA
4e7ad8b9d9
Update options.pxd 2020-05-18 17:51:27 +02:00
iFA
9bbf17b22e
Update _rocksdb.pyx 2020-05-18 17:51:11 +02:00
iFA
47451afdb7
Update options.pxd 2020-04-07 14:19:08 +02:00
iFA
ecd0823331
Update _rocksdb.pyx 2020-04-07 14:17:30 +02:00
iFA
b721c18a6a
Update _rocksdb.pyx 2020-03-12 20:53:07 +01:00
iFA
d94c3a57c0
Update db.pxd 2020-03-12 20:51:57 +01:00
iFA
f14a8197bb
Update table_factory.pxd 2020-03-12 20:51:28 +01:00
iFA
734a8b6337
Update options.pxd 2020-03-12 20:49:29 +01:00
iFA
ac49a391af
Update options.pxd 2019-04-22 20:46:01 +02:00
iFA
57397cd077
Update _rocksdb.pyx 2019-04-22 20:45:29 +02:00
Ming-Hsuan-Tu
88ee8ef45c
Update README.rst 2019-04-19 17:42:51 +08:00
Ming-Hsuan-Tu
2c0c8c4c06
Update README.rst 2019-04-19 17:42:30 +08:00
Ming-Hsuan-Tu
f5a26192db
Update README.rst 2019-04-18 21:12:00 +08:00
Ming-Hsuan-Tu
faea2199ba
Update README.rst 2019-04-06 20:39:55 +08:00
Ming-Hsuan-Tu
ee1bc5a0b9
Merge pull request #40 from fish2000/patch-2
Allow `rocksdb.DB` instances to be manually closed (second revision PR)
2019-02-02 12:45:08 +08:00
twmht
ccd9f21ea1 temporary remove some test options 2019-02-02 12:39:17 +08:00
Alexander Böhn
952e7bb4ab
Allow rocksdb.DB instances to be manually closed
While `delete rocks_ptr` is a deterministic operation in C++, the Python analogue `del rocks_handle` is not – disposal and finalization of the Rocks database are entirely dependent on the Python garbage collector (q.v. the `python-rocksdb` tests themselves, which call `gc.collect()` after `del rocks_handle` to attempt to force the destructor to run). This change exposes a method to trigger the destruction of the underlying Rocks database pointer (deterministic!) through the Python Rocks handle; existing code will not need to be changed, as the Python object destructor (non-deterministic!) will now call this method.

This is the second revision of this PR – it resolves the first revision, #39.
2019-02-01 11:36:36 -05:00
twmht
11da1aa988 bump to version 0.7.0 2019-02-01 22:02:14 +08:00
twmht
209ba91ba4 Merge branch 'merge-pr35' 2019-02-01 21:59:08 +08:00
twmht
0c809e1d2b change default compaction_pri 2019-02-01 21:57:23 +08:00
twmht
32a3dca280 remove full_scan_mode 2019-02-01 21:56:58 +08:00
Ming-Hsuan-Tu
0fbacafa6d
Merge pull request #35 from fried/master
Column Family Support
2019-02-01 21:49:24 +08:00
Jason Fried
2a66e20ca3 Column Family Support
Add support for Column Families in a runtime safe way.
Add unittests to test functionality
Insure all unittests are passing.
Cleaned up unittests to not use a fixed directory in tmp, but use tempfile
2018-11-06 02:26:47 +00:00
Ming-Hsuan-Tu
98910c2dce
Merge pull request #28 from abhiramr/master
Docs: Exporting CPLUS_INCLUDE_PATH, LD_LIBRARY_PATH and LIBRARY_PATH
2018-09-22 15:12:07 +08:00
Abhiram R
e91ac1f810
Added liblz4-dev as a package to be installed 2018-04-17 15:26:22 +05:30
Abhiram R
00b85d15ee Modified docs to export CPLUS_INCLUDE_PATH, LD_LIBRARY_PATH and LIBRARY_PATH correctly even if they weren't originally assigned 2018-04-16 15:34:23 +05:30
Ming-Hsuan-Tu
7ed8a2c66f
Merge pull request #26 from romanz/patch-1
Remove `fetch=False` unsupported keyword from DB.iter{items,keys,values} documentation
2018-04-10 19:42:14 +08:00
Roman Zeyde
7255ba4f2b
Remove fetch=False unsupported keyword from db.iter{items,keys,values} documentation 2018-03-24 21:03:20 +03:00
Ming-Hsuan-Tu
cbdbd40027
Merge pull request #24 from meridianz/patch-1
Docs: fix typo in installation command line
2018-02-21 09:33:09 +08:00
meridianz
4acbc89424
Docs: fix typo in installation command line 2018-02-20 22:19:17 +03:00
twmht
75ea501dd1 bump to 0.6.9 2018-02-15 16:54:07 +08:00
Ming-Hsuan-Tu
c32d401a25
Merge pull request #12 from gmossessian/feature-fixSnappyCompressionTest
allow snappy_compression as a default option in test_options.py::TestOptions::test_simple
2018-02-15 16:01:36 +08:00
Ming-Hsuan-Tu
4d18d4be42
Merge branch 'master' into feature-fixSnappyCompressionTest 2018-02-15 15:56:05 +08:00
Ming-Hsuan-Tu
272ec9ab12
Merge pull request #21 from sileht/sileht/build-fix
Allow to compile the extension everywhere
2018-02-15 15:54:59 +08:00
Mehdi Abaakouk
e4c0de9455 Allow to compile the extension everywhere
This change:
* uses to setuptools Cython automatic extension build system.
* Add tox.ini to run tests and build docs into virtualenv
* Add .travis.yaml and Dockerfile to run tests in CI
* Change requirements to ensure:
  - Cython and setuptools are installed before we build the Cython
    extension
  - tests dependencies are not installed by default
  - doc dependencies are explicit
* Add missing lz4 library
* Allow to build the module with any librocksdb headers (no-rtti)

Closes #15
2018-02-09 09:21:56 +01:00
twmht
1ba2b1acc2 bump to 0.6.8 2018-01-25 23:27:57 +08:00
Ming-Hsuan-Tu
8b8781f450
Merge pull request #20 from metachris/osx-support
OSX support for building, simple update in setup.py
2018-01-25 12:46:43 +08:00
Chris Hager
90b29e2674 OSX support for 'pip install' 2018-01-24 16:50:59 +01:00
Ming-Hsuan-Tu
0953729f61 Merge pull request #16 from rimpybharot/patch-1
Update installation.rst
2017-09-21 18:18:30 +08:00
RIMPY BHAROT
20820095a2 Update installation.rst
Missing steps need to be added for clean installation.
2017-09-21 01:50:25 -07:00
Ming-Hsuan-Tu
aab001bfbc add missing part in the installation guide 2017-07-17 14:51:56 +08:00
Ming-Hsuan-Tu
8fd7913724 fix typo 2017-07-15 22:19:13 +08:00