JDRaftKeeper / RaftKeeper

RaftKeeper is a high-performance distributed consensus service.
Apache License 2.0
141 stars 37 forks source link

Use high performance hashmap in keeper store. #309

Open JackyWoo opened 5 months ago

JackyWoo commented 5 months ago

Describe your idea

Now we use a simple two-level hasmap which may have some disadvantages:

  1. Key is hashed twice.
  2. Hash function is not specially optimized in RaftKeeper.
JackyWoo commented 2 months ago

duplicated #171