In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article will explain in detail how to write the code of Java client Jedis of Redis. The content of the article is of high quality. Therefore, Xiaobian shares it with you as a reference. I hope you have a certain understanding of relevant knowledge after reading this article.
1. Steps
(1) Guide jar packages: Commons-pool-1.6.jar and Jedis-2.1.0.jar;
(2) Create Jedis objects to operate Redis database.
//Note: Eclipse in the host needs to set the following two points to connect to the virtual machine Redis// 1) Disable Linux firewall: systemctl stop firewalld.service;// 2) Comment out bind 127.0.0.1 in redis.conf and set protect-mode no.
2. Code example
public class Test { public static void main(String[] args) { //Create a Jedis object to connect Redis with IP and port number Jedis jedis = new Jedis("192.168.153.131",6379); //Java methods work the same as Linux commands String result = jedis.ping(); System.out.println(result); jedis.set("a", "wanglei"); String a = jedis.get("a"); System.out.println(a); //Close connection jedis.close(); } } About Redis Java client Jedis code how to write to share here, I hope the above content can be of some help to everyone, you can learn more knowledge. If you think the article is good, you can share it so that more people can see it.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.