Free an object, if the object is huge enough, free it in async way. */
| 216 | |
| 217 | /* Free an object, if the object is huge enough, free it in async way. */ |
| 218 | void freeTrackingRadixTreeAsync(rax *tracking) { |
| 219 | atomicIncr(lazyfree_objects,tracking->numele); |
| 220 | bioCreateLazyFreeJob(lazyFreeTrackingTable,1,tracking); |
| 221 | } |
| 222 | |
| 223 | /* Free lua_scripts dict, if the dict is huge enough, free it in async way. */ |
| 224 | void freeLuaScriptsAsync(dict *lua_scripts) { |
no test coverage detected