w3stling / rssreader

A simple Java library for reading RSS and Atom feeds
MIT License
152 stars 25 forks source link

Are the RSS items cached? #100

Closed vmassol closed 1 year ago

vmassol commented 1 year ago

Hello,

I've just noticed that my RSS feed source has changed content but the data I get from RssReader is still the old data. Does it have a cache? If so, is that configurable? I'm on version 3.4.0.

Thanks a lot!

w3stling commented 1 year ago

There is no cache in RssReader. java.net.http.HttpClient is used for fetching the RSS feed data and no caching of http responses exists there as far as I know.

If you fetch the RSS feed data with wget or curl command do you see old data then?

Do you get the same result with the latest version of RssReader?

vmassol commented 1 year ago

Thanks a lot for your quick answer @w3stling !

I've just realized that our infra team had put a cache for the RSS feed... Sorry about that. All is good now.

Thanks again