Wrapper (the one actually called across the core) to pass the key * as object. */
| 397 | /* Wrapper (the one actually called across the core) to pass the key |
| 398 | * as object. */ |
| 399 | void trackingInvalidateKey(client *c, robj *keyobj) { |
| 400 | trackingInvalidateKeyRaw(c,keyobj->ptr,sdslen(keyobj->ptr),1); |
| 401 | } |
| 402 | |
| 403 | /* This function is called when one or all the Redis databases are |
| 404 | * flushed. Caching keys are not specific for each DB but are global: |
no test coverage detected