Free an object, if the object is huge enough, free it in async way. */
| 234 | |
| 235 | /* Free an object, if the object is huge enough, free it in async way. */ |
| 236 | void freeTrackingRadixTreeAsync(rax *tracking) { |
| 237 | atomicIncr(lazyfree_objects,tracking->numele); |
| 238 | bioCreateLazyFreeJob(lazyFreeTrackingTable,1,tracking); |
| 239 | } |
| 240 | |
| 241 | /* Free lua_scripts dict, if the dict is huge enough, free it in async way. */ |
| 242 | void freeLuaScriptsAsync(dict *lua_scripts) { |
no test coverage detected