ssbc / ssb-uri2

Utilities for recognizing and converting SSB URIs
GNU Lesser General Public License v3.0
10 stars 3 forks source link

Faster decompose #11

Closed arj03 closed 2 years ago

arj03 commented 2 years ago

Context:

I started looking at buttwoo again to see where the bottleneck is and found that BFE encode / decode are really quite slow. Using the benchmark in db2 and ebt I tracked the problem down to slow decoding in BFE and then slow encoding in uri2 because of new URI instead of just doing substring. This takes care of the latter and makes encoding roughly 2x faster.