1
0
Fork 0

fixes for secondaries

This commit is contained in:
Kaveh Vahedipour 2017-07-11 14:07:01 +02:00
parent 231a360b3b
commit 415fb1577e
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
devel
-----
* documentation and js fixes for secondaries
* enabled permissions on database and collection level
* added "deduplicate" attribute for array indexes, which controls whether inserting
@ -13,7 +15,7 @@ devel
db.test.insert({ tags: ["a", "b"] });
db.test.insert({ tags: ["c", "d", "c"] }); // will work, because deduplicate = true
db.test.insert({ tags: ["a"] }); // will fail
// with deduplicate = false
db._create("test");
db.test.ensureIndex({ type: "hash", fields: ["tags[*]"], deduplicate: false });
@ -29,7 +31,7 @@ devel
* Debian/Ubuntu installer: make messages about future package upgrades more clear
* fix a hangup in VST
The problem happened when the two first chunks of a VST message arrived
together on a connection that was newly switched to VST.
@ -41,7 +43,7 @@ devel
* changed VM overcommit recommendation for user-friendliness
* fix a shutdown bug in the cluster: a destroyed query could still be active
* do not terminate the entire server process if a temp file cannot be created
(Windows only)