Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Java 中有两个百万大小的 BitSet,我想在这两个 BitSet 上执行类似 andNot 的操作。相同的性能如何?我应该实时进行还是在单独的过程中进行?
主要问题是在性能方面使用 L3 缓存。我怀疑你的 BitSets 适合 L3 缓存,所以无论你做什么,我建议你让事情尽可能简单。如果您的 BitSet 不适合您的 L3 缓存,您唯一的选择是通过更大的 L3 缓存或购买更多的套接字(在一台或多台机器上)多个进程更有可能使其变慢。