when a device sends data to the Traccar server, a socket connection is typically established between the device and the server using the Netty framework.right? for each device establishe a TCP or UDP socket? it means if we have 100 devices ,100 socket will establish?
so if we have for example thousands of devices do we have problems ?
Memory Exhaustion and File Descriptor Limits (Socket Exhaustion)
You have to have appropriate limits to support the number of devices you want to have.
when a device sends data to the Traccar server, a socket connection is typically established between the device and the server using the Netty framework.right? for each device establishe a TCP or UDP socket? it means if we have 100 devices ,100 socket will establish?