mirror of
https://github.com/mailgun/groupcache.git
synced 2024-11-16 14:10:04 +00:00
054f2178b4
* 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.
20 lines
212 B
YAML
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
|