Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
997 views
in Technique[技术] by (71.8m points)

mongodb - MongoCollection versus DBCollection java

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. At least to me they are. I find this very confusing. Any advice would be very welcome.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...