快速地图与传统地图的区别
我想知道 java.util.Map 接口的标准实现和其他一些称为 Fast Map 的地图实现之间有什么区别。并且,您能给我介绍一些可以使用的快速地图实现吗?
最好的
I want to know what is the difference between a standard implementation of java.util.Map interface and some other map implementations which are called Fast Map. And, can you please introduce me some fast map implementations to use?
Best
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般的映射实现类似于 HashMap。快速地图旨在优化读取,但修改成本通常要高得多。我通过快速谷歌搜索发现了这个,我从未尝试过,但它看起来相当不错。 链接
另外,这里是 Apache 集合页面,其中包含 FastLists 和其他很酷的集合等内容。
A general map implementation is something like HashMap. A Fast Map is designed to optimize for reading, but is usually much more expensive to modify. I found this with a quick google search I've never tried it, but it looks pretty good. Link
Also, here is the Apache collections page, which has stuff like FastLists and other cool collections.