4 Star 0 Fork 0

wanttobeamaster / elasticell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
routing.go 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
wanttobeamaster 提交于 2021-04-05 16:48 . fisrt
// Copyright 2016 DeepFabric, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package server
import (
"sync"
)
const (
bucketSize = int64(128)
bucketM = int64(127)
)
type routingMap struct {
sync.RWMutex
m map[int64]*session
}
func (m *routingMap) put(key int64, value *session) {
m.Lock()
m.m[key] = value
m.Unlock()
}
func (m *routingMap) delete(key int64) *session {
m.Lock()
value := m.m[key]
delete(m.m, key)
m.Unlock()
return value
}
func (m *routingMap) get(key int64) *session {
m.Lock()
value := m.m[key]
m.Unlock()
return value
}
type routing struct {
rms []*routingMap
}
func newRouting() *routing {
r := &routing{
rms: make([]*routingMap, bucketSize, bucketSize),
}
for i := int64(0); i < bucketSize; i++ {
r.rms[i] = &routingMap{
m: make(map[int64]*session),
}
}
return r
}
func (r *routing) put(id int64, value *session) {
r.rms[getIndex(id)].put(id, value)
}
func (r *routing) get(id int64) *session {
return r.rms[getIndex(id)].get(id)
}
func (r *routing) delete(id int64) *session {
return r.rms[getIndex(id)].delete(id)
}
func getIndex(id int64) int64 {
return id & bucketM
}
Go
1
https://gitee.com/wanttobeamaster/elasticell.git
git@gitee.com:wanttobeamaster/elasticell.git
wanttobeamaster
elasticell
elasticell
8b1bff0b0046

搜索帮助