mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
9 lines
151 B
Go
9 lines
151 B
Go
package sharding
|
|
|
|
import "github.com/dchest/siphash"
|
|
|
|
func sharding(token string) uint64 {
|
|
sum := siphash.Hash(0, 0, []byte(token))
|
|
return sum % 3
|
|
}
|