Jedis JAR 包使用指南

Jedis JAR 包使用指南

1. 导入 JAR 包


    redis.clients
    jedis
    2.5.2

2. 使用示例

import redis.clients.jedis.Jedis;

public class JedisDemo {

    public static void main(String[] args) {
        // 连接 Redis
        Jedis jedis = new Jedis("127.0.0.1", 6379);

        // 设置值
        jedis.set("hw", "hello world");

        // 获取值
        String hello = jedis.get("hw");

        // 输出值
        System.out.println(hello);
    }
}
jar 文件大小:307.03KB