Note that the 'c' argument may be NULL if the key was modified out of * a context of a client. */
| 751 | /* Note that the 'c' argument may be NULL if the key was modified out of |
| 752 | * a context of a client. */ |
| 753 | void signalModifiedKey(client *c, redisDb *db, robj *key) { |
| 754 | touchWatchedKey(db,key); |
| 755 | trackingInvalidateKey(c,key); |
| 756 | } |
| 757 | |
| 758 | void signalFlushedDb(int dbid, int async) { |
| 759 | int startdb, enddb; |
no test coverage detected