Resolves every certificate's PDF link up front, in parallel
Source:R/utils_download_certs.R
prefetch_cert_links.RdThe links are needed by add_cert_pdf_links() when the main register.json is written, one HTTP round trip each. Resolving them there, one after another, was the single slowest step of a render on a cold cache. Doing it here means the requests run concurrently and the results are in the caches before any page is rendered; get_cert_link() then answers from memory or disk.