From: Joey Hess Date: Thu, 20 May 2021 15:18:46 +0000 (-0400) Subject: todo X-Git-Tag: archive/raspbian/10.20250416-2+rpi1~1^2~91^2~354 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b68a40fa883d5ead9a77eca2e4dcf52944c0178d;p=git-annex.git todo --- diff --git a/doc/todo/optimise_by_converting_Map_to_HashMap.mdwn b/doc/todo/optimise_by_converting_Map_to_HashMap.mdwn new file mode 100644 index 0000000000..49f8b3b322 --- /dev/null +++ b/doc/todo/optimise_by_converting_Map_to_HashMap.mdwn @@ -0,0 +1,7 @@ +Map is used in lots of places, but HashMap is faster, at least sometimes. +It would be worth benchmarking some of the more performance critical +parts with HashMap. The uses in AnnexRead especially. + +(Set and HashSet too.) + +--[[Joey]]