먼저 PHP 스크립트 언어를 사용하여 코드를 입력하세요.
<?php /* * Copyright (C) FatHong */ /* 数据初始化,weight: 权重 */ $hosts['a'] = array('weight' => 5, 'current_weight' => 0, 'count' => 0); $hosts['b'] = array('weight' => 3, 'current_weight' => 0, 'count' => 0); $hosts['c'] = array('weight' => 2, 'current_weight' => 0, 'count' => 0); $result = array(); /* 模拟10次 */ for ($i = 0; $i < 10; $i++) { round_robin($hosts, $result); } /* 输出结果 */ print_r($result); /* round robin 轮循 */ function round_robin(&$hosts, &$result) { $total = 0; $best = null; foreach ($hosts as $key => $item) { $current = &$hosts[$key]; $weight = $current['weight']; $current['current_weight'] += $weight; $total += $weight; if ( ($best == null) || ($hosts[$best]['current_weight'] < $current['current_weight']) ) { $best = $key; } } $hosts[$best]['current_weight'] -= $total; $hosts[$best]['count']++; $result[] = $best; }
출력 결과:
Array
(
[0] => a
[1 ] =>b
[2] =>c
[4] =>a
[5] ] => a
[7] => c
[8] => b
[9] => a
)
서버의 구현 알고리즘 중 하나는 라운드 로빈 가중치 회전입니다. 즉, 백엔드 서버 목록에서 각 서버는 채택 가능성을 나타내는 가중치로 표시됩니다.
이 코드는 백엔드 중단 및 기타 상황을 고려하지 않고 가장 간단한 프로세스를 제거합니다. 참고용으로만 구현 방법을 알 수 있습니다.
더 많은 라운드 로빈 웨이트 휠 관련 기사 알고리즘 기반 PHP 구현 코드에 대해서는 PHP 중국어 사이트를 주목해주세요!