Release the radix tree mapping Redis Cluster keys to slots asynchronously. */
| 210 | |
| 211 | /* Release the radix tree mapping Redis Cluster keys to slots asynchronously. */ |
| 212 | void freeSlotsToKeysMapAsync(rax *rt) { |
| 213 | atomicIncr(lazyfree_objects,rt->numele); |
| 214 | bioCreateLazyFreeJob(lazyfreeFreeSlotsMap,1,rt); |
| 215 | } |
| 216 | |
| 217 | /* Free an object, if the object is huge enough, free it in async way. */ |
| 218 | void freeTrackingRadixTreeAsync(rax *tracking) { |
no test coverage detected