Sorted TTL List

Travis Build Status Windows Tests Coveralls Coverage

Hex.pm Version Deps Status Hex.pm

A ets based list with an expire feature. So you can push keys to the list that will expire after a gven time.

Installation

If available in Hex, the package can be installed as:

  1. Add sorted_ttl_list to your list of dependencies in mix.exs:

    def deps do
      [{:sorted_ttl_list, "~> 0.1.0"}]
    end
  2. Ensure sorted_ttl_list is started before your application:

    def application do
      [applications: [:sorted_ttl_list]]
    end