Skip to content

Commit

Permalink
Added additional links for memoization packages
Browse files Browse the repository at this point in the history
  • Loading branch information
zgornel committed Sep 14, 2018
1 parent 5d2c81b commit 31a6e1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,4 @@ This code has an MIT license and therefore it is free.

[2] https://en.wikipedia.org/wiki/Cache_replacement_policies

For other caching solutions, check out also [LRUCache.jl](https://github.com/JuliaCollections/LRUCache.jl) and [Memoize.jl](https://github.com/simonster/Memoize.jl)
For other caching solutions, check out also [LRUCache.jl](https://github.com/JuliaCollections/LRUCache.jl), [Memoize.jl](https://github.com/simonster/Memoize.jl) and [Memoize.jl](https://github.com/colinfang/Memoize.jl) as well as [Anamnesis.jl](https://github.com/ExpandingMan/Anamnesis.jl)
2 changes: 0 additions & 2 deletions src/diskcache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ end


# Function that retrieves one entry from a stream
# TODO(Corneliu): Implement
function _load_disk_cache_entry(io::T where T<:IO, pos::Int)
seek(io, pos)
datum = deserialize(io)
Expand All @@ -48,7 +47,6 @@ end


# Function that stores one entry to a stream
# TODO(Corneliu): Implement
function _store_disk_cache_entry(io::T where T<:IO, pos::Int, datum)
seek(io, pos)
serialize(io, datum)
Expand Down

0 comments on commit 31a6e1a

Please sign in to comment.