VictoriaMetrics/lib/uint64set
Aliaksandr Valialkin b986516fbe lib/storage: create and use lib/uint64set instead of map[uint64]struct{}
This should improve inverted index search performance for filters matching big number of time series,
since `lib/uint64set.Set` is faster than `map[uint64]struct{}` for both `Add` and `Has` calls.
See the corresponding benchmarks in `lib/uint64set`.
2019-09-24 21:17:55 +03:00
..
uint64set.go lib/storage: create and use lib/uint64set instead of map[uint64]struct{} 2019-09-24 21:17:55 +03:00
uint64set_test.go lib/storage: create and use lib/uint64set instead of map[uint64]struct{} 2019-09-24 21:17:55 +03:00
uint64set_timing_test.go lib/storage: create and use lib/uint64set instead of map[uint64]struct{} 2019-09-24 21:17:55 +03:00