Redis, please don't exists any more.

Source: Internet
Author: User
Tags exit in redis

Today, I accidentally saw a piece of code that was previously optimized for a similar problem. But this problem again and again again appear, really think yards nong, also not who can be good. Details determine success or failure, the style of doing things, really will hinder the development of a person.

Nonsense not much to say, directly on the code:

Unfriendly use
if (jedis.exists (key)) {
	String value = Jedis.get (key);
	Do ("Target code 1");
	...
} else{do
	("Target code 2");
	...
}

Friendly way to use
String value = Jedis.get (key);
if (value!=null) {do
	("Target code 1");
	...
} else{do
	("Target code 2");
	...
}

Unfriendly way to make two network communications with Redis, but only once in a friendly way. One-fold performance boost.

The same is if else.

But some people are lost in if, others find the exit in the else.

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.