Is SaveAll() spring data couchbase atomic

Hi

As per my knowledge couchbase supports atomicity at document level.
Spring data couchbase provides saveAll() method, is this operation also atomic??

Regards,
Venkat

@sri_ram couchbase only (leaving aside the couchbase transactions library for this discussion) provides atomic operations on a per-document basis, so saveAll as a whole is not atomic (only on a individual document basis).

Thanks for the response