diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6789884 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +script: make && make test +language: erlang +otp_release: + - 18.2.1 + - 17.5 + diff --git a/README.md b/README.md index 21b69fb..1b5d968 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Segmented in-memory cache +[![Build Status](https://secure.travis-ci.org/fogfish/cache.svg?branch=master)](http://travis-ci.org/fogfish/cache) + Cache uses N disposable ETS tables instead of single one. The cache applies eviction and quota policies at segment level. The oldest ETS table is destroyed and new one is created when quota or TTL criteria are exceeded.