Skip to content

Commit

Permalink
tweaked readme
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkloop committed Mar 14, 2017
1 parent 09cc842 commit 3df4708
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,19 +140,19 @@ Using this list, we can narrow down the field of possible candidates quite a bit
The popular [lodash memoize](https://lodash.com/docs#memoize), for example, only supports one argument out of the box and has no cache control.
Others support multiple complex arguments, but do not offer mechanisms to manage the cache-size:

` `:heavy_multiplication_x: [Memoizejs](https://github.com/addyosmani/memoize.js) (@addyosmani)
:heavy_multiplication_x: [Memoizejs](https://github.com/addyosmani/memoize.js) (@addyosmani)

` `:heavy_multiplication_x: [Memoize-strict](https://github.com/jshanson7/memoize-strict) (@jshanson7)
:heavy_multiplication_x: [Memoize-strict](https://github.com/jshanson7/memoize-strict) (@jshanson7)

` `:heavy_multiplication_x: [Deep-memoize](https://github.com/rjmk/deep-memoize) (@rjmk)
:heavy_multiplication_x: [Deep-memoize](https://github.com/rjmk/deep-memoize) (@rjmk)

` `:heavy_multiplication_x: [Mem](https://github.com/sindresorhus/mem) (@sindresorhus)
:heavy_multiplication_x: [Mem](https://github.com/sindresorhus/mem) (@sindresorhus)

Three libs with reasonable traction seem to meet the basic criteria:

- [Memoizee](https://github.com/medikoo/memoizee) (@medikoo)
- [LRU-Memoize](https://github.com/erikras/lru-memoize) (@erikras)
- ~~[LRU-Memoize](https://github.com/neilk/lru-memoize) (@neilk)~~
:heavy_check_mark: [Memoizee](https://github.com/medikoo/memoizee) (@medikoo)
:heavy_check_mark: [LRU-Memoize](https://github.com/erikras/lru-memoize) (@erikras)
:heavy_check_mark: ~~[LRU-Memoize](https://github.com/neilk/lru-memoize) (@neilk)~~

After some quick testing, however, we found the last library produced incorrect results, leaving only two viable candidates.

Expand Down

0 comments on commit 3df4708

Please sign in to comment.