RowVersion is an opaque type that represents the version of a row in the
database. The driver uses Node.js Buffer to store the version. The
version is returned by successful get operation
and can be used by put,
putIfVersion, delete and
deleteIfVersion methods to conditionally perform those
operations to ensure an atomic read-modify-write cycle. This is an opaque
object from an application perspective. Use of RowVersion in this
way adds cost to operations so it should be done only if necessary.
RowVersion is an opaque type that represents the version of a row in the database. The driver uses Node.js Buffer to store the version. The version is returned by successful get operation and can be used by put, putIfVersion, delete and deleteIfVersion methods to conditionally perform those operations to ensure an atomic read-modify-write cycle. This is an opaque object from an application perspective. Use of RowVersion in this way adds cost to operations so it should be done only if necessary.