| View previous topic :: View next topic |
| Author |
Message |
Sebastien Dolard Guest
|
Posted: Wed Mar 03, 2004 4:50 pm Post subject: High connexion number Indy tcp |
|
|
Hello,
I've just writing an application that could create an undefine number
of connection.
I write it using one thread/one connexion model.
When a high number of connexion working(ex: 1000), my system is going
down when i try to manipulate them(invalid descriptor...).
I want to change the used model but I could not wait for 10 revision of
indy components.
Could id Thread pool manager improve performance, and how to ?
I need a relative value for thread number/connexion number. I dont know
the way i must follow.
|
|
| Back to top |
|
 |
Chad Z. Hower aka Kudzu Guest
|
Posted: Wed Mar 03, 2004 6:44 pm Post subject: Re: High connexion number Indy tcp |
|
|
Sebastien Dolard <sebastien.dolardAt (AT) netasqDot (DOT) com> wrote in news:40460cd3$1
@newsgroups.borland.com:
| Quote: | I write it using one thread/one connexion model.
When a high number of connexion working(ex: 1000), my system is going
down when i try to manipulate them(invalid descriptor...).
|
1,000 is about the upper limit for this model. You can push it higher - but
you have to make sure you dont have any bottlenecks.
The error you listed is probably in your code if you see it at 1,000.
| Quote: | Could id Thread pool manager improve performance, and how to ?
|
Not if your connections are persistent.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Qualified help FAST with Indy Experts Support
from the experts themselves:
http://www.atozed.com/indy/experts/support.iwp
|
|
| Back to top |
|
 |
Sebastien Dolard Guest
|
Posted: Thu Mar 04, 2004 9:15 am Post subject: Re: High connexion number Indy tcp |
|
|
Chad Z. Hower aka Kudzu wrote:
| Quote: |
1,000 is about the upper limit for this model. You can push it higher - but
you have to make sure you dont have any bottlenecks.
|
Will Indy 10 version resolve those probleme due to the model ?
|
|
| Back to top |
|
 |
Chad Z. Hower aka Kudzu Guest
|
Posted: Thu Mar 04, 2004 11:46 am Post subject: Re: High connexion number Indy tcp |
|
|
Sebastien Dolard <sebastien.dolardAt (AT) netasqDot (DOT) com> wrote in
news:4046f3c5$1 (AT) newsgroups (DOT) borland.com:
| Quote: | 1,000 is about the upper limit for this model. You can push it higher -
but you have to make sure you dont have any bottlenecks.
Will Indy 10 version resolve those probleme due to the model ?
|
Indy 10 can handle as many as you want - up to the limits of memory of your
machine to create sockets.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Qualified help FAST with Indy Experts Support
from the experts themselves:
http://www.atozed.com/indy/experts/support.iwp
|
|
| Back to top |
|
 |
|