Using Redis for Java

Source: Internet
Author: User
Tags redis tutorial

Installation

Before we start using Redis in Java, we need to make sure that we have the Redis service and the Java Redis driver installed and that Java is working properly on your machine. Java installation configuration can refer to our Java Development environment configuration next let's install the Java Redis driver:

  • First you need to download the driver package to download Jedis.jarand make sure to download the latest driver package.
  • Include the driver package in your classpath.
    <!--Https://mvnrepository.com/artifact/redis.clients/jedis -        <Dependency>            <groupId>Redis.clients</groupId>            <Artifactid>Jedis</Artifactid>            <version>2.9.0</version>        </Dependency>
Connect to the Redis service

Attention:

⊙ firewall off: UFW disable

⊙ip address settings: #bind 127.0.0.1

Class:redisjava

 PackageRedisdemo;ImportRedis.clients.jedis.Jedis; Public classRedisjava { Public Static voidMain (string[] args) {//Connect to a local Redis serviceJedis Jedis =NewJedis ("192.168.3.22"); System.out.println ("Connection to Server sucessfully"); //See if the service is runningSystem.out.println ("Server is running:" +jedis.ping ()); }}

Console:

Connection to server Sucessfullyserver is Running:pong
Redis Java String (string) instance

Class:redisstringjava

 PackageRedisdemo;ImportRedis.clients.jedis.Jedis; Public classRedisstringjava { Public Static voidMain (string[] args) {//Connect to a local Redis serviceJedis Jedis =NewJedis ("192.168.3.22"); System.out.println ("Connection to Server sucessfully"); //setting up Redis string DataJedis.set ("Lime", "Redis Tutorial"); //get the stored data and outputSystem.out.println ("Stored string in Redis::" + jedis.get ("lime")); }}

Console:

Connection to server sucessfullystored string in Redis:: Redis Tutorial
Redis Java list (list) instance

Class:

 PackageRedisdemo;Importjava.util.List;ImportRedis.clients.jedis.Jedis; Public classRedislistjava { Public Static voidMain (string[] args) {//Connect to a local Redis serviceJedis Jedis =NewJedis ("192.168.3.22"); System.out.println ("Connection to Server sucessfully"); //storing data in a listJedis.lpush ("Tutorial-list", "lime"); Jedis.lpush ("Tutorial-list", "Oracle"); Jedis.lpush ("Tutorial-list", "Limeoracle"); //get the stored data and outputlist<string> list = Jedis.lrange ("Tutorial-list", 0, 5);  for(inti=0; I<list.size (); i++) {System.out.println ("Stored string in Redis::" +List.get (i)); } }}

Console:

Connection to server sucessfullystored string in Redis:: limeoraclestored string in Redis:: oraclestored string in Redis:: Lime
Redis Java Keys Instance

Class:

 PackageRedisdemo;ImportJava.util.Iterator;ImportJava.util.Set;ImportRedis.clients.jedis.Jedis; Public classRediskeyjava { Public Static voidMain (string[] args) {//Connect to a local Redis serviceJedis Jedis =NewJedis ("192.168.3.22"); System.out.println ("Connection to Server sucessfully"); //get the data and outputset<string> keys = Jedis.keys ("*"); Iterator<String> it=Keys.iterator ();  while(It.hasnext ()) {String key=It.next ();           SYSTEM.OUT.PRINTLN (key); }    }}

Console:

Connection to server sucessfullylilimekeytutorial-list

La La la

La La la

Using Redis for Java

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.