PHP Connect Redis database Operation Redis Task queue

Source: Internet
Author: User
First you install Phpredis extension on your server

$redis = new Redis ();
$redis->connect (' 119.29.10.xx ', 6379);
$redis->auth (' ZX ');//redis in config file Requirepass ZX This is the code.
$redis->set (' myname ', ' ZX ');
$t = $redis->get (' myname ');
Echo $t;

This is the basic connection operation, the next is to implement the task queue, many times need to queue, such as the second kill function, in order to prevent the database lock table, but also for the number of seconds to kill operations set inventory
Cause extra people to handle it manually, as well as a lot of landing

PHP Connect Redis database Operation Redis Task queue

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.