boulder icon indicating copy to clipboard operation
boulder copied to clipboard

Improve DB performance of bad-key-revoker

Open jsha opened this issue 4 years ago • 0 comments

In findUnrevoked, we should use rows.Scan to stream rows rather than reading them all in one go. We should also remove the ORDER BY and LIMIT. Instead of those, we should instead let the database do its work of building a temporary table of our results, and then work our way through it.

jsha avatar Oct 13 '21 17:10 jsha