├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .golangci.yaml ├── LICENSE ├── Makefile ├── README.md ├── bench ├── benchstat.txt ├── get_test.go ├── go.mod └── go.sum ├── client.go ├── client_test.go ├── conn.go ├── go.mod ├── go.sum ├── pipeline.go ├── pubsub.go ├── redcache ├── cache.go └── cache_test.go └── redtest └── server.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **.test 2 | coverage.out 3 | -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/README.md -------------------------------------------------------------------------------- /bench/benchstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/bench/benchstat.txt -------------------------------------------------------------------------------- /bench/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/bench/get_test.go -------------------------------------------------------------------------------- /bench/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/bench/go.mod -------------------------------------------------------------------------------- /bench/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/bench/go.sum -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/client_test.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/conn.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/go.sum -------------------------------------------------------------------------------- /pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/pipeline.go -------------------------------------------------------------------------------- /pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/pubsub.go -------------------------------------------------------------------------------- /redcache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/redcache/cache.go -------------------------------------------------------------------------------- /redcache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/redcache/cache_test.go -------------------------------------------------------------------------------- /redtest/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/redjet/HEAD/redtest/server.go --------------------------------------------------------------------------------