Skip to content

Commit

Permalink
Update outdated naming references
Browse files Browse the repository at this point in the history
  • Loading branch information
whitfin committed Jan 5, 2024
1 parent 1757d7e commit 6fa816f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ For examples of the programmatic API, please see [the examples](./examples/basic
Runiq comes with several "filters", which control exactly how uniqueness is verified. Each of these filters has different use cases, and excels in different ways.

* `quick`
* The `quick` filter works the same way as the `naive` filter, except values are pre-hashed.
* This results in much lower memory overhead than `naive`, with comparably throughput.
* Depending on your input lengths, throughput can actually be faster than `naive`.
* The `quick` filter works the same way as the `simple` filter, except values are pre-hashed.
* This results in much lower memory overhead than `simple`, with comparably throughput.
* Depending on your input lengths, throughput can actually be faster than `simple`.
* `simple`
* The `simple` filter uses basic `Set` implementations to determine uniqueness.
* Offers a fairly good throughput, while still effectively guaranteeing accuracy.
Expand Down

0 comments on commit 6fa816f

Please sign in to comment.