summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2012-02-28 14:28:31 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2012-02-28 14:28:31 +1100
commit9aba715f56503708120751e1b416493c1830d371 (patch)
treec16064762a3f5b3c1193900c5fc8fa5bd86b4214 /NEWS
parent061956966eb59f9a3b275f878ca2c9a3f11a9149 (diff)
downloadmongo-9aba715f56503708120751e1b416493c1830d371.tar.gz
Bump the version to 1.1.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS41
1 files changed, 41 insertions, 0 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 00000000000..3c9c000781d
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,41 @@
+WiredTiger release 1.1.0, 2012-02-28
+------------------------------------
+
+Add checks to the session.truncate method to ensure the start/stop
+cursors reference the same object and have been initialized.
+
+Implement cursor duplication via WT_SESSION::open_cursor. [#161]
+
+Switch to quiet builds by default.
+
+Fix with automake version < 1.11, use foreign mode so that fewer
+top-level files are required.
+
+If a session or connection method is about to return WT_NOTFOUND (some
+underlying object was not found), map it to ENOENT, only cursor methods
+return WT_NOTFOUND. [#163]
+
+Save and restore session->btree in schema ops to simplify calling code.
+[#164]
+
+Note the wiredtiger_open config string "multiprocess" is not yet
+supported.
+
+Move "root:F" and "version:F" entries for files into the value for
+"file:F", so there is only a single record per file.
+[NOTE: SCHEMA CHANGE]
+
+When parsing config strings, continue to the end of the string in case
+of repeated keys. [#124]
+
+Don't require shared libraries unless Python is configured.
+
+Add support for direct I/O, with the config "direct_io=(data,log)".
+Build with _GNU_SOURCE on Linux to enable O_DIRECT.
+
+Don't keep the last page of column stores pinned: it prevented eviction
+of large trees created from scratch.
+
+Allow application threads to evict pages from any tree: maintain a count
+of threads doing LRU in each tree and wait for activity to drain when
+closing.