todo
authorJoey Hess <joeyh@joeyh.name>
Thu, 20 May 2021 15:18:46 +0000 (11:18 -0400)
committerJoey Hess <joeyh@joeyh.name>
Thu, 20 May 2021 15:18:46 +0000 (11:18 -0400)
doc/todo/optimise_by_converting_Map_to_HashMap.mdwn [new file with mode: 0644]

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 (file)
index 0000000..49f8b3b
--- /dev/null
@@ -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]]