branlwyd / rss-download

Small daemon which watches an RSS feed for links, and downloads them to a specified directory.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use a better solution for scheduling.

branlwyd opened this issue · comments

Currently, watching N feeds runs N goroutines and uses manually-written time logic.

A package like github.com/robfig/cron provides a pre-written solution that manages job scheduling with a single goroutine.