are the best data structures and architectures?
What I currently use is Microsoft FASTER KV, but I want to know if there are other options.
How many are reads? How many are writes? How many threads? How big is the data for each read and each write?
They are really hard to answer, what I try to design is a general producer/consumer and event-based data-pool.
Well the more general you go, the worse performancr
Honestly don't know what to use? vector Want to search by key often? unordered_map Going to iterate over it often/as main purpose? vector Want to add-remove elements without invalidating other iterators? map, unordered_map, list
Обсуждают сегодня