Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ coverage.txt
go.sum

# IDE
.idea
.idea

# benchmark results
*.json
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 2 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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
)