Preparations before running:
Download the Jedis client.
Sample code:
import redis.clients.jedis.Jedis;
public class HelloRedis {
public static void main(String[] args) {
try {
/**Enter your Redis instance's private IP, port number, instance ID, and password in the following parameters in case of private network access.
Configure the instance's public network address, port number, and password in case of public network access.*/
String host = "192.xx.xx.195";
int port = 6379;
String instanceid = "crs-09xxxqv";
String password = "123ad6aq";
// Connect to Redis
Jedis jedis = new Jedis(host, port);
// Authenticate
jedis.auth(instanceid + ":" + password);
/**You can start manipulating the Redis instance. For more information, visit https://github.com/xetorthio/jedis.*/
// Set the key
jedis.set("redis", "tencent");
System.out.println("set key redis suc, value is: tencent");
// Get the key
String value = jedis.get("redis");
System.out.println("get key redis is: " + value);
// Close and exit
jedis.quit();
jedis.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
Execution result:
Was this page helpful?