Posts: 31
Threads: 19
Joined: Mar 2018
Reputation:
0
in my machine each port can carry 1024 Connections , when my indy server have about 600 clients which is 600 Threads every thing is fine no problems at all. but when it goes to 800 + the app got not responsive and unable to accept new connections
what is the possible number that indy can hold ?
Posts: 1,136
Threads: 37
Joined: Mar 2018
Reputation:
30
Location: Limassol, Cyprus
If you have so many concurrent connections you should be using a thread pool, not a thread for every connection.
Indy has no limit. The limit is imposed by RAM and sometimes OS (non server OSes often have artificial TCP connection limits)
Posts: 7
Threads: 2
Joined: Oct 2018
Reputation:
0
Location: Brazil
And at Linux environments, performance is better compared to Windows?