A simple Redis call class

Source: Internet
Author: User

Can only judge the function call rules, fault tolerance rules,

such as the Set function

Set ($key, $value, $time = False)

Determine whether to use set, or the Setex function, based on the true or false of time

Get function

Get ($key, $json _decode = True)

Returns an array by default, depending on whether a string or an array is returned by Json_decode

Also define a

Private $tags = Array (

' Set ' = ' Set ',

' Setx ' = ' Set ',

)

The Magic method used inside the class __call ($name, $arguments)

if (Array_key_exists ($name, $this->tags) {

return Call_user_function_array (Array ($this->_redis, $this->tags[$name]), arguments);

}else{

Thow new \exception ' does not exist for this method ';

}

So we can define some synonyms under tags to use as a fault-tolerant function.

A simple Redis call class

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.