Release Candidate 2.0.0-rc.3
Pre-release
Pre-release
[2.0.0-rc.3] - 2019-06-03
Changes
- Now using golang standard
context.Context
instead ofgroupcache.Context
. - HTTP requests made by
httpGetter
now respectcontext.Context
done. - Moved
HTTPPool
configContext
andTransport
toHTTPPoolOptions
for consist configuration. - Now Associating the transport with peer
httpGetter
so there is no need to
callTransport
function for each request. - 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 overcrowd the maincache. - Changed import paths to /v2 in accordance with go modules rules
- Fixed Issue where
DefaultTransport
was always used even ifTransport
was
specified by the user.