├── .github ├── release-drafter-config.yml └── workflows │ ├── codeql-analysis.yml │ ├── integration.yml │ └── release-drafter.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── client.go ├── client_test.go ├── example_client_test.go ├── go.mod ├── go.sum ├── pool.go └── pool_test.go /.github/release-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.github/release-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/client_test.go -------------------------------------------------------------------------------- /example_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/example_client_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/go.sum -------------------------------------------------------------------------------- /pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/pool.go -------------------------------------------------------------------------------- /pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisBloom/redisbloom-go/HEAD/pool_test.go --------------------------------------------------------------------------------