tidb-incubator / tidis

A distributed transactional large-scale NoSQL database powered by TiKV
Apache License 2.0
444 stars 30 forks source link

What does the inner_txn field means in Handler? #93

Closed Praying closed 1 year ago

Praying commented 1 year ago
    /// The txn state of this connection.
    inner_txn: bool

I can't understand the txt state's meaning?

yongman commented 1 year ago

This is a flag to indicate if the context is a global transaction, such as EVAL/EVALSHA or MULT/EXEC commands.

Praying commented 1 year ago

This is a flag to indicate if the context is a global transaction, such as EVAL/EVALSHA or MULT/EXEC commands.

got it, thanks