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

获取服务结合随机算法

时间:2019-12-20 01:09:02      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:ble   pack   display   tom   app   算法   append   order   mat   

package util

import (
    "math/rand"
    "time"
)

type LoadBalance struct {
    Servers []*ServiceInfo
}

func NewloadBalance(servers []*ServiceInfo) *LoadBalance  {
    return &LoadBalance{Servers:servers}
}
func(this *LoadBalance) getByRand(sname string ) *ServiceInfo{
    tmp:=make([]*ServiceInfo,0)
    for _,service:=range this.Servers{
        if service.ServiceName==sname{
            tmp=append(tmp,service)
        }
    }
    if len(tmp)==0 {
        return nil
    }
    rand.Seed(time.Now().UnixNano())
    i:=rand.Intn(len(tmp)-1)
    return this.Servers[i]
}




获取服务结合随机算法

标签:ble   pack   display   tom   app   算法   append   order   mat   

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

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