Home
last modified time | relevance | path

Searched refs:CLIENT_DIRTY_CAS (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dmulti.c77 c->flags &= ~(CLIENT_MULTI|CLIENT_DIRTY_CAS|CLIENT_DIRTY_EXEC); in discardTransaction()
135 if (c->flags & (CLIENT_DIRTY_CAS|CLIENT_DIRTY_EXEC)) { in execCommand()
308 c->flags |= CLIENT_DIRTY_CAS; in touchWatchedKey()
333 c->flags |= CLIENT_DIRTY_CAS; in touchWatchedKeysOnFlush()
353 c->flags &= (~CLIENT_DIRTY_CAS); in unwatchCommand()
H A Dnetworking.c1661 if (client->flags & CLIENT_DIRTY_CAS) *p++ = 'd'; in catClientInfoString()
H A Dserver.h234 #define CLIENT_DIRTY_CAS (1<<5) /* Watched keys modified. EXEC will fail. */ macro