Updated for: threadrecycler@0.3.0-alpha.4
Configuration
External Configuration
You can edit your ThreadPool
configuration by editing the table.
client-or-server.luau
local ThreadPool = ThreadRecycler.construct({
["InitialThreadCount"] = 60, -- Initial thread count
["CachedLifetime"] = 60, -- Cached lifetime
["EnableStatRecording"] = true, -- Enables recording of stats
["Logger"] = warn, -- Log method; doesn't do anything right now. Coming in the future...
["Debug"] = false -- Debug configuration. Doesn't do anything right now. Coming in the future...
})
Internal Configuration
Some internal configs can be modified in the module, although it will only be applied if you leave .erect()
blank:
ThreadRecycler.lua
local SETTINGS = {
Default = {
threadCount = 10 :: number, -- Default initial thread count
cachedtime = false :: number | boolean, -- Default cached lifetime
enableStatRecording = false :: boolean, -- Enables default recording of stats. Set to false if you don't want to use this.
logger = warn :: () -> () , -- Default log method; doesn't do anything right now. Coming in the future...
debug = false :: boolean, -- Default debug configuration. Doesn't do anything right now. Coming in the future...
}
}
Changing the default thread count to a negative number can work.
Last updated on