├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _benchmarks ├── README.md ├── alphazero_redis_test.go ├── base_test.go ├── bench.sh ├── garyburd_redigo_test.go ├── go-redis-getongs-data.R ├── gosexy_redis_test.go ├── simonz05_godis_test.go └── tcgl_redis_test.go ├── _examples ├── test-custom-commands │ └── main.go ├── test-get-set │ └── main.go ├── test-multi-exec │ └── main.go ├── test-ping │ └── main.go ├── test-range │ └── main.go ├── test-server-disconnection │ └── main.go └── test-subscribe │ └── main.go ├── commands.go ├── conn.go ├── redis.go └── redis_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/README.md -------------------------------------------------------------------------------- /_benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/README.md -------------------------------------------------------------------------------- /_benchmarks/alphazero_redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/alphazero_redis_test.go -------------------------------------------------------------------------------- /_benchmarks/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/base_test.go -------------------------------------------------------------------------------- /_benchmarks/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/bench.sh -------------------------------------------------------------------------------- /_benchmarks/garyburd_redigo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/garyburd_redigo_test.go -------------------------------------------------------------------------------- /_benchmarks/go-redis-getongs-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/go-redis-getongs-data.R -------------------------------------------------------------------------------- /_benchmarks/gosexy_redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/gosexy_redis_test.go -------------------------------------------------------------------------------- /_benchmarks/simonz05_godis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/simonz05_godis_test.go -------------------------------------------------------------------------------- /_benchmarks/tcgl_redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_benchmarks/tcgl_redis_test.go -------------------------------------------------------------------------------- /_examples/test-custom-commands/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-custom-commands/main.go -------------------------------------------------------------------------------- /_examples/test-get-set/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-get-set/main.go -------------------------------------------------------------------------------- /_examples/test-multi-exec/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-multi-exec/main.go -------------------------------------------------------------------------------- /_examples/test-ping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-ping/main.go -------------------------------------------------------------------------------- /_examples/test-range/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-range/main.go -------------------------------------------------------------------------------- /_examples/test-server-disconnection/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-server-disconnection/main.go -------------------------------------------------------------------------------- /_examples/test-subscribe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/_examples/test-subscribe/main.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/commands.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/conn.go -------------------------------------------------------------------------------- /redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/redis.go -------------------------------------------------------------------------------- /redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gosexy/redis/HEAD/redis_test.go --------------------------------------------------------------------------------