Download the PHP package truongbo/proxy-rotation without Composer
On this page you can find all versions of the php package truongbo/proxy-rotation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package proxy-rotation
Proxy Rotation with Laravel Guzzle
Description
- Implement Nginx simple load balancing strategies to build a Package Proxy Rotation to use with Guzzle or anymore...
-
Use only effective, consistent and simple strategies to rotate proxies
Optional Features
- Installation
- Quick Use
- Sort Nodes
- Max Use
Strategy
- Random
- Frequency
- Round Robin
- Weighted Round Robin
- Multiple Dynamic
Multiple Endpoint
Automatically retry connect and switch between endpoint
- Introduction
Next feature
Use backup hosts (if the main host is not accessible, Guzzle will automatically connect to the backup hosts to get data...)✔️Configure strategies to run separately with hosts, smarter✔️Automatically retry connecting hosts when it fails to connect (configure number of retries, response code types)✔️Load balancing, apply separate strategies to each Cluster❌- Anymore...
Installation
Install the package:
Run test:
Publish package files (config):
Quick Use
You need to choose a rotation strategy and configure it with Rotation:
Initialize a cluster consisting of proxy nodes:
Then, we should connect ProxyMiddleware to Guzzle for the proxy balancing to work:
Finished, check it out now:
Result: (With proxy-node as your proxy address)
Sort Nodes
Sort to adjust the order of nodes in ascending or descending order:
Top proxy nodes will be used more and vice versa, for example:
Sorting nodes can help you use the Frequency strategy better. Use asc for reverse sort.
Max Use
- Store the proxy usage count in the cache and count it. If it is used more than allowed, the proxy will be temporarily idle for the configured time period.
- Use only with Random , Frequency and RoundRobin strategies
Example:
Everything else runs automatically
Random
- $input_random : How are proxies random?
Config:
Output(both):
Frequency
More efficient using sort node
The probability of choosing nodes for Frequency can be visualized as follows::
Round Robin
The proxies will be rotated in turn ($counter : start counting from somewhere)
Output:
-
You can interfere with proxy usage for a certain period of time if the proxy is restricted from use.Using Max Use
Weighted Round Robin
The number of times this proxy node is called is the weight parameter passed in the initialization of the ProxyNode ($counter : start counting from somewhere)
Output:
- Proxy Node without weight will not be used
Multiple Dynamic
Dynamically change strategies according to the passed callable condition (Absolutely do not use if you do not know about it)