groupcache/.travis.yml
Derrick J. Wippler 054f2178b4 Client keep-alives and hotcache changes
* Now Associating the transport with peer `httpGetter` so we take advantage of
  connection reuse.  This lowers the impact on DNS and improves preformance for
  high request volume low latency applications.
* Now always populating the hotcache. A more complex algorithm is unnecessary
  when the LRU cache will ensure the most used values remain in the cache. The
  evict code ensures the hotcache does not over crowd the maincache.
2019-06-03 10:20:40 -05:00

20 lines
212 B
YAML

language: go
go_import_path: github.com/mailgun/groupcache
os: linux
dist: trusty
sudo: false
script:
- go test ./...
go:
- 1.10.x
- 1.11.x
- 1.12.x
- master
cache:
directories:
- $GOPATH/pkg