Loading repository data…
Loading repository data…
goncalotomas / repository
A simple LRU Cache with no dependencies written in Erlang
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A very simple fixed-size cache implementation with a minimal get and put interface. Distributed as an OTP application and it can be used as a dependency.
$ rebar3 compile
$ rebar3 shell
1> kashe:get(1).
undefined
2> kashe:put(<<"meaning of life">>, 42).
ok
3> kashe:get(<<"meaning of life">>).
42