MongoCollection versus DBCollection java

后端 未结 1 1396
[愿得一人]
[愿得一人] 2020-12-10 10:45

When should you be using MongoCollection and when DBCollection? The same questions apply to DBObject, BasicDBObject, Document. There seem to be different things are similar

相关标签:
1条回答
  • 2020-12-10 11:27

    This seems to be a question about the 3.0.0 MongoDB Java driver.

    The general advice is to use Document/MongoCollection/MongoDatabase for new application development.

    The DBObject/DBCollection/DB classes, however, remain in the 3.0.0 driver so that many existing applications that currently use the 2.x driver series have an upgrade path to the 3.0 driver. The driver authors (I'm one of them) tried to make this clear by deprecating the MongoClient.getDB method, which returns an instance of the DB class, in order to encourage use of the new MongoClient.getDatabase method, which returns an instance of MongoDatabase.

    0 讨论(0)
提交回复
热议问题