mmcdole / gofeed

Parse RSS, Atom and JSON feeds in Go
MIT License
2.51k stars 204 forks source link

Please consider exposing skipHours (in shared model) #228

Open DamonHD opened 3 weeks ago

DamonHD commented 3 weeks ago

Please consider making (RSS) skipHours as easy to use as possible to help gofeed clients minimise feed energy and bandwidth impacts, especially in the light of more and more grid power coming from solar.

https://www.earth.org.uk/RSS-efficiency.html

Rgds

Damon

infogulch commented 3 weeks ago

This seems like a scheduling concern. gofeed doesn't do any scheduling, it just fetches a feed and parses it.

Maybe something like this would be a good application for an example test.

DamonHD commented 2 weeks ago

As I understand it (second hand, I'm not a direct gofeed user) currently skipHours is parsed but only available in the RSS-specific view rather than the unified view. Making it available in the unified view would make it easier for some clients to code for and use.

Rgds

Damon