how to multithread proxy checker

I'm creating one as we speak because I have the need to check 100K proxy lists in seconds rather then hours :P

Currently the one I've been building with a friend does about 100K in 32seconds on a standard desktop PC with 8mb ADSL internet.
 
Currently the one I've been building with a friend does about 100K in 32seconds on a standard desktop PC with 8mb ADSL internet.

:bsflag:

You may be trying to open all those connections, but the 99.99% of them will time out (neither the cpu nor the network can handle it) giving false negatives.
 
im running of 25 threads and it returns the response time and can process approximatley 100 per 30seconds
 
:bsflag:

You may be trying to open all those connections, but the 99.99% of them will time out (neither the cpu nor the network can handle it) giving false negatives.

Thats only 3125 open/close connections per second... Most CPU's can handle alot more then that...

Anyhow nice flag :)
 
im running of 25 threads and it returns the response time and can process approximatley 100 per 30seconds

my one simple returns a OK or Fail and has no silly gui or grid view thus eliminating any slowness.

you just simple insert input.txt with your proxies and it gives you output.txt with the known working ones.
 
Thats only 3125 open/close connections per second... Most CPU's can handle alot more then that...

Anyhow nice flag :)

It 's really simple to check. Get a few hundred proxies that you know they work and load them as duplicates (up to 10k) to be checked by your program in 32 seconds - check the results ;)
 
post your code for multithrading please....
 
Back
Top