mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// package ctl contains all pilosa subcommands other than 'server'. These are
|
|
// generally administration, testing, and debugging tools.
|
|
|
|
package client
|
|
|
|
import (
|
|
"sync"
|
|
|
|
pnet "github.com/featurebasedb/featurebase/v3/net"
|
|
)
|
|
|
|
type shardNodes struct {
|
|
data map[string]map[uint64][]*pnet.URI
|
|
mu *sync.RWMutex
|
|
}
|
|
|
|
func newShardNodes() shardNodes {
|
|
return shardNodes{
|
|
data: make(map[string]map[uint64][]*pnet.URI),
|
|
mu: &sync.RWMutex{},
|
|
}
|
|
}
|
|
|
|
func (s shardNodes) Get(index string, shard uint64) ([]*pnet.URI, bool) {
|
|
s.mu.RLock()
|
|
defer s.mu.RUnlock()
|
|
if idx, ok := s.data[index]; ok {
|
|
if uris, ok := idx[shard]; ok {
|
|
return uris, true
|
|
}
|
|
}
|
|
return nil, false
|
|
}
|
|
|
|
func (s shardNodes) Put(index string, shard uint64, uris []*pnet.URI) {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
idx, ok := s.data[index]
|
|
if !ok {
|
|
idx = make(map[uint64][]*pnet.URI)
|
|
}
|
|
idx[shard] = uris
|
|
s.data[index] = idx
|
|
}
|
|
|
|
func (s shardNodes) Invalidate() {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
for k := range s.data {
|
|
delete(s.data, k)
|
|
}
|
|
}
|