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('Content-type:text/html;charset=utf-8'); $redis = new Redis(); $redis->connect('127.0.0.1',6379); $result = $redis->set('name','脚本小子'); if( !$result ) { die('设置有误.'); } echo $redis->get('name'); ?>
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.