예제 #1
0
파일: utils.go 프로젝트: ZuoGuocai/codis
func GetZkLock(zkConn zkhelper.Conn, productName string) zkhelper.ZLocker {
	zkPath := fmt.Sprintf("/zk/codis/db_%s/LOCK", productName)
	ret := zkhelper.CreateMutex(zkConn, zkPath)
	return ret
}
예제 #2
0
파일: utils.go 프로젝트: XMAN-WOMBAT/reborn
func GetCoordLock(coordConn zkhelper.Conn, productName string) zkhelper.ZLocker {
	coordPath := fmt.Sprintf("/zk/reborn/db_%s/LOCK", productName)
	ret := zkhelper.CreateMutex(coordConn, coordPath)
	return ret
}