opentracing-go-redis icon indicating copy to clipboard operation
opentracing-go-redis copied to clipboard

OpenTracing instrumentation for go-redis.

Results 6 opentracing-go-redis issues
Sort by recently updated
recently updated
newest added

Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20190626221950-04f50cda93cb to 0.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20190626221950-04f50cda93cb&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.0.0-20190621222207-cc06ce4a13d4 to 0.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.0.0-20190621222207-cc06ce4a13d4&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20190620200207-3b0461eec859 to 0.7.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.0.0-20190620200207-3b0461eec859&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.2 to 0.3.8. Commits 434eadc language: reject excessively large Accept-Language strings 23407e7 go.mod: ignore cyclic dependency for tagging b18d3dd secure/precis: replace bytes.Compare with bytes.Equal 795e854 all: replace...

dependencies

Hi! I fix version for [miniredis](https://github.com/alicebob/miniredis). Update to last version [2.14.1](https://github.com/alicebob/miniredis/releases/tag/v2.14.1)

``` func (svc *DemoService) DemoRedisList(formData form.DemoInfoForm) (*response.UserResponse, error) { keyString := fmt.Sprintf("userinfo:%d", formData.UserId) var ( data *response.UserResponse ) err := goredis.GetRedisClient(svc.context).Get(keyString).Scan(&data) if err != nil || common.NewTools().IsNil(data) { data, err...