├── .gitignore ├── LICENSE ├── NOTICE ├── README.markdown ├── asynchclient.go ├── bench ├── LICENSE ├── NOTICE ├── README ├── asyncbench.go ├── gosynchclient.go └── synchclient.go ├── changelog ├── compliance ├── Makefile ├── compliance-report-Go-Redis.txt ├── compliance.go ├── compliance.prop ├── redis-commands-2.4.n.txt └── runtest ├── compliance_note.txt ├── connection.go ├── connection_test.go ├── error.go ├── error_test.go ├── examples ├── LICENSE ├── NOTICE ├── README ├── ciao.go └── publisher.go ├── future.go ├── future_test.go ├── protocol.go ├── pubsubclient.go ├── redis.go ├── redisfutures.go ├── specification.go ├── synchclient.go └── test ├── 0data_test.go ├── async_test.go ├── gen ├── AsyncClient_mtest.tmpl ├── Client_mtest.tmpl ├── README.md └── generate.go ├── protocol_test.go ├── support.go └── sync_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/NOTICE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/README.markdown -------------------------------------------------------------------------------- /asynchclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/asynchclient.go -------------------------------------------------------------------------------- /bench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/LICENSE -------------------------------------------------------------------------------- /bench/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/NOTICE -------------------------------------------------------------------------------- /bench/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/README -------------------------------------------------------------------------------- /bench/asyncbench.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/asyncbench.go -------------------------------------------------------------------------------- /bench/gosynchclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/gosynchclient.go -------------------------------------------------------------------------------- /bench/synchclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/bench/synchclient.go -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/changelog -------------------------------------------------------------------------------- /compliance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/compliance/Makefile -------------------------------------------------------------------------------- /compliance/compliance-report-Go-Redis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/compliance/compliance-report-Go-Redis.txt -------------------------------------------------------------------------------- /compliance/compliance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/compliance/compliance.go -------------------------------------------------------------------------------- /compliance/compliance.prop: -------------------------------------------------------------------------------- 1 | redis-commands-2.4.n.txt 2 | -------------------------------------------------------------------------------- /compliance/redis-commands-2.4.n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/compliance/redis-commands-2.4.n.txt -------------------------------------------------------------------------------- /compliance/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/compliance/runtest -------------------------------------------------------------------------------- /compliance_note.txt: -------------------------------------------------------------------------------- 1 | Redis: 2 | 2.4.9 3 | 4 | Go: 5 | Go1 (Release 1.0) 6 | 7 | Test platform 8 | darwin/amd64 9 | 10 | -- 11 | March 30, 2012 12 | bushwick/nyc 13 | -------------------------------------------------------------------------------- /connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/connection.go -------------------------------------------------------------------------------- /connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/connection_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/error_test.go -------------------------------------------------------------------------------- /examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/examples/LICENSE -------------------------------------------------------------------------------- /examples/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/examples/NOTICE -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/examples/README -------------------------------------------------------------------------------- /examples/ciao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/examples/ciao.go -------------------------------------------------------------------------------- /examples/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/examples/publisher.go -------------------------------------------------------------------------------- /future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/future.go -------------------------------------------------------------------------------- /future_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/future_test.go -------------------------------------------------------------------------------- /protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/protocol.go -------------------------------------------------------------------------------- /pubsubclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/pubsubclient.go -------------------------------------------------------------------------------- /redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/redis.go -------------------------------------------------------------------------------- /redisfutures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/redisfutures.go -------------------------------------------------------------------------------- /specification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/specification.go -------------------------------------------------------------------------------- /synchclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/synchclient.go -------------------------------------------------------------------------------- /test/0data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/0data_test.go -------------------------------------------------------------------------------- /test/async_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/async_test.go -------------------------------------------------------------------------------- /test/gen/AsyncClient_mtest.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/gen/AsyncClient_mtest.tmpl -------------------------------------------------------------------------------- /test/gen/Client_mtest.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/gen/Client_mtest.tmpl -------------------------------------------------------------------------------- /test/gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/gen/README.md -------------------------------------------------------------------------------- /test/gen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/gen/generate.go -------------------------------------------------------------------------------- /test/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/protocol_test.go -------------------------------------------------------------------------------- /test/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/support.go -------------------------------------------------------------------------------- /test/sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphazero/Go-Redis/HEAD/test/sync_test.go --------------------------------------------------------------------------------