码迷,mamicode.com
首页 > 编程语言 > 详细

平滑加权轮询算法下的降权

时间:2019-12-19 23:18:36      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:splay   fun   ret   img   weight   load   bottom   ble   round   

技术图片

func (this *LoadBalance) RoundRobinByWeight3() *HttpServer { //平滑加权轮询
    for _, s := range this.Servers {
        s.CWeight = s.CWeight + s.Weight
    }
    sort.Sort(this.Servers)
    max := this.Servers[0]

    max.CWeight = max.CWeight - SumWeight
    return max
}




平滑加权轮询算法下的降权

标签:splay   fun   ret   img   weight   load   bottom   ble   round   

原文地址:https://www.cnblogs.com/hualou/p/12070718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!