feeder_ex icon indicating copy to clipboard operation
feeder_ex copied to clipboard

Performance Issue

Open jherdman opened this issue 4 years ago • 3 comments

I noticed that parsing Radiolab's RSS feed is quite slow (http://feeds.wnyc.org/radiolab). Unfortunately my Erlang/Elixir skills aren't yet strong enough to offer much more in the way of help. The procedure I'm following is more or less...

$ curl http://feeds.wnyc.org/radiolab > podcast.rss
$ iex -S mix
iex> rss = File.read!("podcast.rss") # this is fast
iex> feed = FeederEx.parse(rss) # this is slow

jherdman avatar Apr 25 '20 13:04 jherdman