We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2700d8 commit 347d86fCopy full SHA for 347d86f
tok/partitioned_hnsw/partitioned_factory.go
@@ -96,9 +96,10 @@ func (hf *partitionedHNSWIndexFactory[T]) createWithLock(
96
return nil, err
97
}
98
retVal := &partitionedHNSW[T]{
99
- pred: name,
100
- floatBits: floatBits,
101
- clusterMap: map[int]index.VectorIndex[T]{},
+ pred: name,
+ floatBits: floatBits,
+ clusterMap: map[int]index.VectorIndex[T]{},
102
+ buildSyncMaps: map[int]*sync.Mutex{},
103
104
err := retVal.applyOptions(o)
105
if err != nil {
0 commit comments