News Filters

MongoDB 4.0 Released

Thursday, July 19, 2018

Multi-Document Transactions

From the 4.0 version MongoDB provides ability to perform multi-document transactions. With multi-document transactions, until a transaction commits, no write operations in the transaction are visible outside the transaction. That is, the multi-document transactions are atomic. We are thinking about implemeting it in GrandNode in some actions. We will inform you if we decide. 

Feature Compatibility

The featureCompatibilityVersion of all members of the replica set must be 4.0 or greater. To check the featureCompatibilityVersion for a member, connect to the member and run the following command:

db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )

New Type Conversion Operators

New String Operators

Additional Improvements

Many more details you can find in the official MongoDB releases notes here: https://docs.mongodb.com/manual/release-notes/4.0/

 
Leave your comment
back to top
Filters