Skip to content

Commit 52156cc

Browse files
committed
Improve README spelling and grammer
1 parent b24003d commit 52156cc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ Parse RSS feeds very quickly
77

88
**Speed**
99

10-
Currently this is already much faster than most of the pure elixir/erlang packages out there. In benchmarks there is speed improvements anyway between **2.85x - 22.05x** over the next fastest package [feeder_ex](https://github.com/manukall/feeder_ex).
10+
Currently this is already much faster than most of the pure elixir/erlang packages out there. In benchmarks there are speed improvements anywhere between **2.85x - 22.05x** over the next fastest package [feeder_ex](https://github.com/manukall/feeder_ex) that was tested.
1111

12-
Compared to the slowest elixir options ([feed_raptor](https://github.com/merongivian/feedraptor), [elixir_feed_parser](https://github.com/fdietz/elixir-feed-parser)), FastRSS was sometimes **127.21x** faster and used **2091.61x** less memory. See [benchmarks](#benchmark) below.
12+
Compared to the slowest elixir options tested ([feed_raptor](https://github.com/merongivian/feedraptor), [elixir_feed_parser](https://github.com/fdietz/elixir-feed-parser)), FastRSS was sometimes **127.21x** faster and used **2091.61x** less memory.
1313

14+
See [benchmarks](#benchmark) below for more.
1415

15-
This could probably be made even faster by properly using [serde_rustler](https://github.com/sunny-g/serde_rustler) to directly convert the [`rss:Channel`](https://docs.rs/rss/1.9.0/rss/struct.Channel.html) into an elixir map (PRs welcome)
16+
With all that being said, this package could probably be made even faster by properly using [serde_rustler](https://github.com/sunny-g/serde_rustler) to directly convert the [`rss:Channel`](https://docs.rs/rss/1.9.0/rss/struct.Channel.html) into an elixir map (PRs welcome)
1617

1718
Currently we do this very naively, the process is:
1819
1. On the rust side we serialize the [`rss:Channel`](https://docs.rs/rss/1.9.0/rss/struct.Channel.html) it into a JSON string using [`serde_json`](https://docs.serde.rs/serde_json/)

0 commit comments

Comments
 (0)