Merge pull request #15457 from bergquist/distributed_cache

Distributed cache
This commit is contained in:
Carl Bergquist
2019-03-14 16:16:39 +01:00
committed by GitHub
18 changed files with 679 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
function exit_if_fail {
command=$@
echo "Executing '$command'"
eval $command
rc=$?
if [ $rc -ne 0 ]; then
echo "'$command' returned $rc."
exit $rc
fi
}
echo "running redis and memcache tests"
time exit_if_fail go test -tags=redis ./pkg/infra/remotecache/...
time exit_if_fail go test -tags=memcached ./pkg/infra/remotecache/...