* @return this
*/
public Builder setMongoDB(DB db, int changesSizeMB, int blobCacheSizeMB) {
if (db != null) {
if (this.documentStore == null) {
this.documentStore = new MongoDocumentStore(db, this);
}
if (this.blobStore == null) {
this.blobStore = new MongoBlobStore(db, blobCacheSizeMB * 1024 * 1024);
}