Packages

A simple, fast ETS-based cache with timed expiry for Erlang and Elixir. Provides both basic put/get operations and serialized fetch operations to minimize thundering herd problems when caching expensive computations.

Current section

Files

Jump to
kiss_cache src kiss_cache.app.src
Raw

src/kiss_cache.app.src

%% Only rebar3 reads this. Mix generates its own .app from mix.exs, so the
%% version below must be kept in step with @version there when releasing.
{application, kiss_cache,
[{description, "A simple, fast ETS-based cache with timed expiry for Erlang and Elixir."},
{vsn, "1.1.0"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
{modules, []},
{licenses, ["MIT"]},
{links, [{"GitHub", "https://github.com/CrankWheel/kiss_cache"}]}
]}.