We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137a873 commit 24d5c9bCopy full SHA for 24d5c9b
Makefile
@@ -23,6 +23,10 @@ checkfmt:
23
fi && \
24
exit $$EXIT_CODE
25
26
+lint:
27
+ $(GOGET) github.com/golangci/golangci-lint/cmd/golangci-lint
28
+ golangci-lint run
29
+
30
get:
31
$(GOGET) -t -v ./...
32
go.mod
@@ -3,6 +3,8 @@ module github.com/filipecosta90/redis-benchmark-go
3
go 1.14
4
5
require (
6
- github.com/filipecosta90/hdrhistogram v0.1.1
+ github.com/HdrHistogram/hdrhistogram-go v0.9.0
7
+ github.com/codahale/hdrhistogram v0.9.0 // indirect
8
+ github.com/golangci/golangci-lint v1.31.0 // indirect
9
github.com/mediocregopher/radix/v3 v3.5.2
10
)
0 commit comments