README.md
# Sorted TTL List
[](https://travis-ci.org/mpneuried/sorted_ttl_list)
[](https://ci.appveyor.com/project/mpneuried/sorted_ttl_list)
[](https://coveralls.io/github/mpneuried/sorted_ttl_list)
[](https://hex.pm/packages/sorted_ttl_list)
[](https://beta.hexfaktor.org/github/mpneuried/sorted_ttl_list)
[](https://hex.pm/packages/sorted_ttl_list)
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](https://hex.pm/docs/publish), the package can be installed as:
1. Add `sorted_ttl_list` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:sorted_ttl_list, "~> 0.1.0"}]
end
```
2. Ensure `sorted_ttl_list` is started before your application:
```elixir
def application do
[applications: [:sorted_ttl_list]]
end
```