PHP uses Redis simple example to share

Source: Internet
Author: User
Tags auth php redis redis

This article mainly introduces the use of PHP redis simple sample sharing, mainly to show you, PHP use Redis method, the need for small partners under the reference.

-->

The example is simple, the comments are also explained, there is no more nonsense.

The code is as follows:
<?php
/* Get database name from Platform * * *
$dbname = "";
/* Take host,port,user,pwd*/from environment variables
$host = ';
$port = ';
$user = ';
$pwd = ';
try {
/* Establish a connection, before the set operation, you need to do auth verification * *
$redis = new Redis ();
$ret = $redis->connect ($host, $port);
if ($ret = = False) {
Die ($redis->getlasterror ());
}
$ret = $redis->auth ($user. "-" . $pwd. "-" . $dbname);
if ($ret = = False) {
Die ($redis->getlasterror ());
}
/* Next you can operate the library, the specific methods of operation please refer to the official documents of Phpredis * *
$redis->flushdb ();
$ret = $redis->set ("Key", "value");
if ($ret = = False) {
Die ($redis->getlasterror ());
} else {
echo "OK" $redis->get ("key");
}
catch (Redisexception $e) {
Die ("uncaught exception"). $e->getmessage ());
}
?>

The above is the entire content of the code described in this article, I hope you can enjoy.

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.