blockworks-foundation / mango-feeds

GNU Affero General Public License v3.0
3 stars 3 forks source link

optimize slots map with IntMap #28

Open grooviegermanikus opened 2 months ago

grooviegermanikus commented 2 months ago

this slots: HashMap<u64, SlotData> field has some 33 entries

HashMap

2024-08-14T11:40:09.325933Z INFO replay_slot_account_stream: slot_cnt: 124636, account_cnt: 4908189, elapsed: 75.98s

IntMap

2024-08-14T11:37:18.013434Z INFO replay_slot_account_stream: slot_cnt: 124636, account_cnt: 4908189, elapsed: 48.70s

See more about map alternatives