Evgeny Gazdovsky
Evgeny Gazdovsky
Ops! @savsofts me send broadcast messages too! But less then 5 online clients, and process get ~100M on my raspberry
@savsofts Are you using data channels?
Found out new beahaver https://github.com/node-webrtc/node-webrtc/issues/614
@savsofts I haven't any memory leakage. Some time have a lot node threads only.
Found out new beahaver https://github.com/node-webrtc/node-webrtc/issues/614
@savsofts only text
@savsofts have you close connection on server side when user disconnected?
I've noticed not closed connections on the server side leave all 7 or 8 child processes. Could you try to close the peer connections on the server after disconnecting? Example:...
could you close a connection on failed or disconnected status and check a memory usage?
@savsofts @markandrus this simple test shows child processes leakage: ``` const { RTCPeerConnection } = require('wrtc'); setInterval(() => { const peer = new RTCPeerConnection(); setTimeout(() => { peer.close(); }, 5000);...