我有一个调用 REST 服务器的服务。我正在使用 CURL 发出请求。我们有三个端点用于分配负载。我可以创建一些“随机”选择端点的基本逻辑,但这似乎不是一个“好的”解决方案。我想知道是否有更好的解决方案?
define ("REST_SERVER", "http://myService.myCompany.com:8280");
...
$url = REST_SERVER.URL_SIGN;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$curl_result = curl_exec($ch);