Options to pass into the STM transaction's commit.
Isolation level for the transaction. Defaults to SerializableSnapshot.
WithPrefetch is a hint to prefetch a list of keys before trying to apply.
If an STM transaction will unconditionally fetch a set of keys, prefetching
those keys will save the round-trip cost from requesting
each key one by one with .get()
.
Number of times we'll retry the transaction if we get a conflict. Defaults to 3.
Generated using TypeDoc
ISTMOptions are optionally passed to
etcd3.stm(options)
.