After like 4h+ usually the game starts having delay problems which just seem to get worse with time. This majorly affects the game-play so we want to know how we can get this fixed??
I think it may be caused by memory leak because it can go up to like 3k after a long time (and that’s not normal) but I’ve had another dev look at it too and he didn’t really see anything that would be causing it.
What you have described sounds exactly like a memory leak. Basically, what is happening is that connections or other resources aren’t being properly disposed of causing them to hang around in memory forever. Gradually over time, the garbage collector will begin to slow down due to all of the resources and connections stored in memory. This will cause lag and eventually can even cause the server to crash which may result in other issues such as players losing their data.
I would recommend taking a look at this topic from @stravant as it full of very useful information.
If you have any further questions on memory leaks, feel free to reply to my post or message me on the DevForum and I should be able to help you out.