许多Reactor Dispatchers 允许您指定“积压”,例如:
SingleThreadDispatcher(int backlog)
ThreadPoolExecutorDispatcher(int poolSize, int backlog)
我发现一些文档说:
reactor.dispatchers.threadPoolExecutor.type = threadPoolExecutor
reactor.dispatchers.threadPoolExecutor.size = 0
# Backlog is how many Task objects to warm up internally
reactor.dispatchers.threadPoolExecutor.backlog = 1024
有人可以帮助我理解这意味着什么以及合理的价值可能是什么?