关于shardingsphere:ShardingSphere高CPU消耗的问题

31次阅读

共计 286 个字符,预计需要花费 1 分钟才能阅读完成。

ShardingSphere 官网文档

https://shardingsphere.apache…

一、老版本 TreeMap 问题

在 5.0.0 之前的 ShardingResultSet 中应用的 TreeMap 设置的不分大小写导致的,这个源码中写死的。

1.1 标志性热点

二、5.0.0 版本之后去掉了 TreeMap

在 5.0.0 版本之后,源码中用了新的后果集类 ShardingSphereResultSet,并且用CaseInsensitiveMap 取代了TreeMap

三、附

github 上曾经有人提过相干的 issue:https://github.com/apache/sha…

正文完
 0