hello I hope you are well, I'm trying to create a project to support 1000 clients for that I used the colyseus server template and for the client side I created a threejs client, I established communication between the rooms using the pub/sub, I used the colyseus load test but I have this error, to check that it is not a problem of resources I tested on a very powerful pc but I had the same error so it's not a problem of resources
Possible EventEmitter memory leak detected. 11 sendDatatoRoom listeners added to [EventEmitter]. Use emitter.setMaxListeners() to increase limit(solved)
Hi.
It's a limitation of NodeJS.
Try to use require('events').EventEmitter.defaultMaxListeners = 0;
to remove the limitation.
@COCO
Hello thank you for your response.