Release the radix tree mapping Redis Cluster keys to slots asynchronously. */
| 228 | |
| 229 | /* Release the radix tree mapping Redis Cluster keys to slots asynchronously. */ |
| 230 | void freeSlotsToKeysMapAsync(rax *rt) { |
| 231 | atomicIncr(lazyfree_objects,rt->numele); |
| 232 | bioCreateLazyFreeJob(lazyfreeFreeSlotsMap,1,rt); |
| 233 | } |
| 234 | |
| 235 | /* Free an object, if the object is huge enough, free it in async way. */ |
| 236 | void freeTrackingRadixTreeAsync(rax *tracking) { |
no test coverage detected