schemedoc / srfi-metadata

Import SRFI metadata into the Scheme API
https://docs.scheme.org/srfi/support/
MIT License
10 stars 2 forks source link

Faster scraping #20

Open lassik opened 3 years ago

lassik commented 3 years ago

Running ./generate.sh, which scrapes all Scheme implementations from scratch, I now understand the point someone made about the scrapers being too slow.

The easiest solution would be to only run the scrapers that have changed since the last run. This could be done by:

Scrapers could also be run in parallel.

Any of the above would work, but we're going to hit the same problem when scraping other data (not just SRFI listings) so a more generic solution would be in order. I'll dust of the prototype Scheme framework I have for generic scraping.