├── .gitignore ├── README.md └── src ├── main └── scala │ └── com │ └── fotolog │ └── redis │ ├── RedisClient.scala │ ├── RedisCluster.scala │ └── RedisIO.scala └── test └── scala └── com └── fotolog └── redis └── RedisClientTest.scala /.gitignore: -------------------------------------------------------------------------------- 1 | reports 2 | target 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyk0/redis-client-scala-netty/HEAD/README.md -------------------------------------------------------------------------------- /src/main/scala/com/fotolog/redis/RedisClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyk0/redis-client-scala-netty/HEAD/src/main/scala/com/fotolog/redis/RedisClient.scala -------------------------------------------------------------------------------- /src/main/scala/com/fotolog/redis/RedisCluster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyk0/redis-client-scala-netty/HEAD/src/main/scala/com/fotolog/redis/RedisCluster.scala -------------------------------------------------------------------------------- /src/main/scala/com/fotolog/redis/RedisIO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyk0/redis-client-scala-netty/HEAD/src/main/scala/com/fotolog/redis/RedisIO.scala -------------------------------------------------------------------------------- /src/test/scala/com/fotolog/redis/RedisClientTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreyk0/redis-client-scala-netty/HEAD/src/test/scala/com/fotolog/redis/RedisClientTest.scala --------------------------------------------------------------------------------