• 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!

Use of more than one core

Cassius Clay

Member
Joined
Jan 16, 2011
Messages
49
Reaction score
6
There is here in the forum some version of TFS that use more than one core? Even if it is in the premium ... If you do not have here in the forum and someone know how to modify the sources to use more than one core, msg me, pay by paypal.
 
My knowledge on this subject is very minimal, I've never used this system before, nor have I seen anyone talk about it in a long time.
However, I do remember there are such options in config.lua. Again, I have no idea how to use it.

LUA:
	-- Process
	-- NOTE: daemonize works only on *nix, same as niceLevel, while
	-- defaultPriority works only on Windows.
	-- coresUsed are seperated by comma cores ids used by server process,
	-- default is -1, so it stays untouched (automaticaly assigned by OS).
	daemonize = false
	defaultPriority = "high"
	niceLevel = 5
	serviceThreads = 1
	coresUsed = "-1"
 
Evan is correct, if your corseUsed is set to -1 then it means it is currently using all cores, in order to check this

go to the process in the processes list of your task manager
right click the process and choose set affinity, if all of them are checked then that means the server is using all cores
 
Back
Top