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