MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come eseguire l'upsert con mongodb-java-driver

Se stai usando driver mongo-java 3 , seguendo .updateOne() metodo con {upsert, true} la bandiera funziona.

 void setLastIndex(MongoClient mongo, Long id, Long lastIndexValue) {

    Bson filter = Filters.eq("_id", id);

    Bson update =  new Document("$set",
                  new Document()
                        .append("lastIndex", lastIndexValue)
                        .append("created", new Date()));
    UpdateOptions options = new UpdateOptions().upsert(true);

    mongo.getDatabase(EventStreamApp.EVENTS_DB)
         .getCollection(EventCursor.name)
         .updateOne(filter, update, options);
  }