What type of proxy to choose?
- Dec 29, 2019, 8:18 AM
- 2 minutes
Shared channel
This type of channel is sold to 2-5 users, the IP address changes automatically every 2 minutes. From the fact that 2-5 clients are sitting on the channel, it's okay, because a mobile operator can simultaneously have several people on the same IP address.
The maximum number of threads on a common channel is up to 400 threads. The page of the site consists of different elements: pictures, fonts, etc. Page elements are loaded in parallel: each element takes 1 stream - one picture, or font, or file with js, etc. In total, a user needs about 50 threads to load a page. When there are several users on the channel, a problem arises - if several of them start to fully load the pages, someone will not be able to load their page completely. When using a private channel, all streams go to one user.
During the automatic change, the IP addresses of the session for all threads are “reset”.
Fits:
- for registering and maintaining social network accounts
- for parsing
Not suitable:
- for tasks with a large number of threads - blocking or non-execution of some threads is possible
- for tasks that require high speed of the Internet (due to several users of the Internet may have a low speed)
Private channel
The same parameters as the common channel, but only given to one client, as well as changing the IP address is done at the request of the client with a wait of 5 seconds.
Fits:
- to create and maintain social network accounts (in large quantities, since all flows go to only 1 client);
- for parsing.
Not suitable:
- for tasks with a very large number of threads - blocking or non-execution of some threads is possible;
- for tasks where an instant IP address change is required.
Private channel without waiting
The same parameters as the private channel, but there is no waiting when changing the IP address.
Fits:
- to create and maintain social network accounts (in large quantities, since all flows go to only 1 client);
- for parsing.
Not suitable:
- for tasks with a very large number of threads - blocking or non-execution of some threads is possible.
Multiport
Using this type of channel, the client will make each request from a new IP address.
The channel works in single-request mode, that is, it will not work to load the browser page.
Fits:
- to work in special software, not browser emulators;
- for spam;
- to work with the API.
Not suitable:
- to work in browsers.