How to use Redis in combat

Source: Internet
Author: User
We now use the Redis database, although I also understand those get set operation, but finally no time to live, how to cooperate with MySQL database in the Nepal?


Reply to discussion (solution)

Compress the query result set after saving

if ($redis->get (' key ')) {$result = $redis->get (' key '); $result = Unserialize ($result);} else{//Query Database $result = mysql_query ($sql), while ($row = Mysql_fetch_array ()) {    $arr [] = $row;} $arr = serialize ($arr); $redis->set (' key ', $arr);}

Not that Redis is better than memcache?
So memcache can store PHP arrays and objects directly, why not Redis?

Compress the query result set after saving

if ($redis->get (' key ')) {$result = $redis->get (' key '); $result = Unserialize ($result);} else{//Query Database $result = mysql_query ($sql), while ($row = Mysql_fetch_array ()) {    $arr [] = $row;} $arr = serialize ($arr); $redis->set (' key ', $arr);}

Redis includes string, List, Set, zset, hash data type, look at your data in the application scenario, MC and Redis can be used as a cache, after the data from MySQL, see MC or Redis Application

  • 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.