From eef60b3ab7d4fa10c3e5ab524cb77b8ec374dc27 Mon Sep 17 00:00:00 2001 From: hofmockel <dreagonfly@gmx.de> Date: Tue, 29 Apr 2014 17:48:55 +0200 Subject: [PATCH] Update the changelog --- docs/changelog.rst | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index cddae5a..1688327 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,13 +4,32 @@ Changelog Upcoming Version ---------------- -Target is to work with the next version of rocksdb (2.8.fb) +Target is rocksdb 3.0 + +Version 0.2 +---------------- + +This version works with RocksDB version 2.8.fb. Now you have access to the more +advanced options of rocksdb. Like changing the memtable or SST representation. +It is also possible now to enable *Universal Style Compaction*. * Fixed `issue 3 <https://github.com/stephan-hof/pyrocksdb/pull/3>`_. Which fixed the change of prefix_extractor from raw-pointer to smart-pointer. * Support the new :py:attr:`rocksdb.Options.verify_checksums_in_compaction` option. +* Add :py:attr:`rocksdb.Options.table_factory` option. So you could use the new + 'PlainTableFactories' which are optimized for in-memory-databases. + + * https://github.com/facebook/rocksdb/wiki/PlainTable-Format + * https://github.com/facebook/rocksdb/wiki/How-to-persist-in-memory-RocksDB-database%3F + +* Add :py:attr:`rocksdb.Options.memtable_factory` option. + +* Add options :py:attr:`rocksdb.Options.compaction_style` and + :py:attr:`rocksdb.Options.compaction_options_universal` to change the + compaction style. + * Update documentation to the new default values * allow_mmap_reads=true @@ -22,15 +41,7 @@ Target is to work with the next version of rocksdb (2.8.fb) * level0_stop_writes_trigger=24 * level0_slowdown_writes_trigger=20 -* Document new property names for :py:meth:`rocksdb.DB.get_property` - -* Add :py:attr:`rocksdb.Options.table_factory` option. So you could use the new - 'PlainTableFactories' which are optimized for in-memory-databases. - - * https://github.com/facebook/rocksdb/wiki/PlainTable-Format - * https://github.com/facebook/rocksdb/wiki/How-to-persist-in-memory-RocksDB-database%3F - -* Add :py:attr:`rocksdb.Options.memtable_factory` option. +* Document new property names for :py:meth:`rocksdb.DB.get_property`. Version 0.1 ----------- -- GitLab