• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Config.lua mysql

Axelor

Member
Joined
Sep 2, 2010
Messages
505
Reaction score
9
hello,

how can I have the maximum best speed in my server, do I have to change something here?

defaultPriority = "high"
niceLevel = 5
coresUsed = "-1"
optimizeDatabaseAtStartup = true
removePremiumOnInit = true
confirmOutdatedVersion = false


this is in config.lua
 
Last edited:
hello,

how can I have the maximum best speed in my server, do I have to change something here?

defaultPriority = "high"
niceLevel = 5
coresUsed = "-1"
optimizeDatabaseAtStartup = true
removePremiumOnInit = true
confirmOutdatedVersion = false


this is in config.lua

Code:
defaultPriority = "highest"
niceLevel = 5
coresUsed = "-1"
optimizeDatabaseAtStartup = true
removePremiumOnInit = true
confirmOutdatedVersion = false

it's all dependant on the speed of the hardware of the server tbh, changing the priority won't do much but, and may make things such as the web server unstable or slow to respond
 
Code:
defaultPriority = "highest"
niceLevel = 5
coresUsed = "-1"
optimizeDatabaseAtStartup = true
removePremiumOnInit = true
confirmOutdatedVersion = false

highest doesn't exit.
Just
higher -> high -> realtime
You should test with which of these your server has the best performance, overall I think high is fine.
 
Back
Top