Pregunta

see http://docs.mongodb.org/manual/reference/method/Bulk/

Can you please point me to the version which supports this new API or in which version this support will be available?

¿Fue útil?

Solución

There's currently no dedicated support for the bulk operations introduced in MongoDB 2.6. If you think these operations are worthwhile to add support for, please raise a ticket in out JIRA.

In the meantime you can use a CollectionCallback to execute bulk operations on the raw MongoDB collection:

template.execute(new CollectionCallback<Void> {

    Void doInCollection(DBCollection collection) {

        BulkWriteOperation operation = collection.initialize(Uno|O)rderedBulkOperation();
        // bulk code goes here
        operation.execute();
        return null;
    }
}

Otros consejos

MongoDB Java Driver for MongoDB v2.6 does support bulk operations however since these are very new set of operations which were not provided in MongoDB v2.4, these may not have made into stable versions of Spring Data yet. I see there are planned 1.5.X SpringData but don't see any associated API / reference for these yet on their website.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top