From docs:
This takes a while to run on a prod-sized data set. There are a couple of things that would make it faster, if we need/want to.
- Monkeypatch
forgetracker.model.ticket.Globals.bin_count
to skip the refresh (Solr search) and just return zero for everything, since we don’t need bin counts for the sitemap.- Use multiprocessing to distribute the offsets to n subprocesses.
Remove speedup suggestions from docs when this is ready.