Home > Article > Backend Development > A simple example sharing of php+redis
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.
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
Related recommendations:
php+redis implements rush buying function
php+redis type Use in combination
The above is the detailed content of A simple example sharing of php+redis. For more information, please follow other related articles on the PHP Chinese website!