this pre-release introduce the usage of a thread pool for async database operations.
Using thread pool will improve performances as there is no need to recreate thread on the fly as we can reuse one from the pool
Configure the threadpool in the config :
Code (Text):
# The number of thread that will be used for your async database call
# If you are using MySQL, I would advice to set the same number as "minimum idle connection"
# In the case were you have more than 3 running operation, extra thread will be created temporarily
idle-thread-pool-size: 3