Xiaobei_php+redis simple example

WBOY
Release: 2016-07-30 13:31:26
Original
1017 people have browsed it

php+redis simple example

1. Description

Since redis is a c/s architecture, from this perspective, any client that meets the requirements of redis can communicate with redis. There are many official clients provided.

The development of PHP on the web is obvious to all. Therefore, here we mainly explain the usage examples of php and redis

2. Examples

Only the string type of redis is used here. The get and set commands are used

<?php
/**
 * @explain php操作redis
 *  		1、设置key为name,其值为脚本小子
 *  		2、获取key为name的值
 * @author 脚本小子-小贝
 * @url http://blog.csdn.net/u014795720/article/category/5700629
 * @date 2015-07-22
 */
header(&#39;Content-type:text/html;charset=utf-8&#39;);
$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$result = $redis->set('name','脚本小子');
if( !$result )
{
	die('设置有误.');
}
echo $redis->get('name');
?>
Copy after login

Explain the interaction process between php and redis:

1. The redis service must be started. Otherwise, the following operations cannot be performed

2. PHP connects to the machine and port that starts the redis service

3. PHP operates redis according to business logic

Attachment:

Source code download address of this document

php_redis Chinese User Manual

Copyright Statement: This article is an original article by the blogger and may not be reproduced without the permission of the blogger.

The above introduces a simple example of Xiaobei_php+redis, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!