Im having a question about performance of the gameserver:
So, Im sending stuff from a client to a server.
And now that stuff should be send to any other player in order to sync up.
Which version of those two here costs more performance:
Or
Notes:
m.GetString(0) -> Contains the data I want to send
m.GetInteger(1) -> Contains the player ID which this affects
Hope some1 can answer this question as Im not sure which way eats up more performance (and this code will be executed very often on my server...).
default0 said
a long time ago | Post #1Im having a question about performance of the gameserver:
So, Im sending stuff from a client to a server.
And now that stuff should be send to any other player in order to sync up.
Which version of those two here costs more performance:
Or
Notes:
m.GetString(0) -> Contains the data I want to send
m.GetInteger(1) -> Contains the player ID which this affects
Hope some1 can answer this question as Im not sure which way eats up more performance (and this code will be executed very often on my server...).
Best regards