A small example of a Java connection to Redis

  • 2020-04-01 02:16:17
  • OfStack

Need to the corresponding API ((link: http://xiazai.jb51.net/201309/yuanma/jedis-2.1.0.jar))


package com.redis;
import redis.clients.jedis.Jedis;
public class Client {
    public void getCache(String key){
        Jedis jedis = new Jedis("127.0.0.1",6379);

        for (int i = 0; i < 100000; i++){
            jedis.set(String.valueOf(i), "kkkk");
        }

        
        String value = jedis.get(key);
        System.out.println(value);
    }    

    public static void main(String[] args){
        Client client = new Client();
        client.getCache("key1");
    }
}


Related articles: