Note that the 'c' argument may be NULL if the key was modified out of * a context of a client. */
| 576 | /* Note that the 'c' argument may be NULL if the key was modified out of |
| 577 | * a context of a client. */ |
| 578 | void signalModifiedKey(client *c, redisDb *db, robj *key) { |
| 579 | touchWatchedKey(db,key); |
| 580 | trackingInvalidateKey(c,key); |
| 581 | } |
| 582 | |
| 583 | void signalFlushedDb(int dbid, int async) { |
| 584 | int startdb, enddb; |
no test coverage detected