To execute a Redis command using Jedis, you make method calls against the Jedis object you created from the pool. Jedis exposes Redis commands as method calls, some example are:
- String get(String key)
- Long geoadd(String key, double longitude, double latitude, String member)
- List<String...