You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sending command '{ "ismaster" : 1, "$db" : "admin" } ...' with request id 4 to database admin on connection [connectionId{localValue:1, serverValue:1958}] to server 127.0.0.1:27017
Execution of command with request id 4 completed successfully in 22.44 ms on connection [connectionId {localValue:1, serverValue:1958}] to server 127.0.0.1:27017
87
+
```
88
+
89
+
### Improved support for "raw" documents
90
+
91
+
When working with "raw" BSON for improved performance via the [`RawBsonDocument`]({{<apiref "org/bson/RawBsonDocument">}}), the efficiency
92
+
of accessing embedded documents and arrays has been drastically improved by returning raw slices of the containing document or array. For
93
+
instance
94
+
95
+
```java
96
+
RawBsonDocument doc =newRawBsonDocument(bytes);
97
+
98
+
// returns a RawBsonDocument that is a slice of the bytes from the containing doc
0 commit comments