Release the skiplist mapping Redis Cluster keys to slots in the * lazyfree thread. */
| 32 | /* Release the skiplist mapping Redis Cluster keys to slots in the |
| 33 | * lazyfree thread. */ |
| 34 | void lazyfreeFreeSlotsMap(void *args[]) { |
| 35 | rax *rt = args[0]; |
| 36 | size_t len = rt->numele; |
| 37 | raxFree(rt); |
| 38 | atomicDecr(lazyfree_objects,len); |
| 39 | atomicIncr(lazyfreed_objects,len); |
| 40 | } |
| 41 | |
| 42 | /* Release the key tracking table. */ |
| 43 | void lazyFreeTrackingTable(void *args[]) { |