Considerations for a Redis wire-break re-connect encoding

Source: Internet
Author: User

Applications must be self-recovering after Redis restarts, network Flash-off, and normal recovery, as illustrated by the Java language Jedis client as an example:

1. As a publisher

The Jedis object cannot be used as a singleton, and the Jedis object cannot be self-recoverable after the network flash. You should fetch the Jedis object from Jedispool each time you publish the message, and then call the Set method.

2. As Subscribers

When the Psubscribe () method is no longer blocked and throws an exception after the network flash, you can use the while loop to handle the exception inside the loop, with the following code:

 while(true) {Jedis Redis= This. Jedispool.getresource (); Try{redis.psubscribe ( This, Channelarray); }Catch(jedisconnectionexception e) {Logger.warn ("Exception:", E); Logger.warn ("Exit Redis Psubscribe, retry after 1 second"); }Catch(Exception e) {logger.error ("Exception:", E); }            Try{Thread.Sleep (1000); }Catch(Exception unused) {}Try{                if(Redis! =NULL) {redis.close (); }            }Catch(Exception unused) {}}

Considerations for a Redis wire-break re-connect encoding

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.