Resilient Jedis adapter for Scala made with love ❤️ by Globo.com
Add in sbt dependency:
"com.globo.bigdata" %% "gedis" % "0.0.4"
You can use for Single Instance and Sentinel with all Jedis supported functions
val client:GedisClient = GedisClient(single = Option(new Jedis(host, port)))
val client:GedisClient = GedisClient(pool = Option(new JedisSentinelPool(masterName, hosts.asJava, password)))
All Jedis commands are supported and are simple as:
client.get("key")
For development and contributing, please follow Contributing Guide and ALWAYS respect the Code of Conduct