diff --git a/.gitignore b/.gitignore index 5dda159..17f277a 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,7 @@ coverage.txt go.sum # IDE -.idea \ No newline at end of file +.idea + +# benchmark results +*.json \ No newline at end of file diff --git a/README.md b/README.md index 2012f33..ebe6b31 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ The easiest way to get and install the redisgraph-benchmark-go Go program is to `go get` and then `go install`: ```bash # Fetch this repo -go get github.com/filipecosta90/redisgraph-benchmark-go -cd $GOPATH/src/github.com/filipecosta90/redisgraph-benchmark-go +go get github.com/RedisGraph/redisgraph-benchmark-go +cd $GOPATH/src/github.com/RedisGraph/redisgraph-benchmark-go make ``` diff --git a/go.mod b/go.mod index 7888525..b3fc469 100644 --- a/go.mod +++ b/go.mod @@ -1,13 +1,11 @@ -module github.com/filipecosta90/redisgraph-benchmark-go +module github.com/RedisGraph/redisgraph-benchmark-go go 1.13 require ( github.com/HdrHistogram/hdrhistogram-go v1.0.1 github.com/RedisGraph/redisgraph-go v1.0.1-0.20210122150500-aa0feaa960ce - github.com/golangci/golangci-lint v1.35.2 // indirect github.com/gomodule/redigo v2.0.0+incompatible - github.com/mitchellh/gox v1.0.1 // indirect - github.com/tcnksm/ghr v0.13.0 // indirect + github.com/google/go-cmp v0.5.4 // indirect golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 )