This article mainly introduces the method of using redis in PHP framework CodeIgniter, and analyzes the installation and settings of redis in the form of examples, as well as the related operating skills and precautions for using redis in CodeIgniter. Friends in need can refer to the following
The example in this article describes how the PHP framework CodeIgniter uses redis. Share it with everyone for your reference, the details are as follows:
1. Install redis
First of all, the redis service (redis database) must be installed on the computer ) and run, see another article for details: //www.jb51.net/article/138173.htm
2. Install phpredis
① Download
Project address: https://github.com/phpredis/phpredis (you can ignore this). It is mentioned here that the windows version of phpredis needs to be compiled by yourself. Of course We can't be so reckless.
Let me talk about the detours I have taken. I downloaded it from http://windows.php.net/downloads/pecl/snaps/redis/20160319/ (you can ignore this), but I still can’t get it. Okay, actually this vc14 is the 7.0 version of PHP, and what we need is the 7.1 version, so it was always wrong and I couldn’t find the problem until I found this:
http://pecl.php.net/ package-stats.php
Click on the corresponding version:
http://pecl.php.net/package/redis/3.1.1/windows
Download 7.1 corresponding version.
② Installation
Place the downloaded and decompressed php_redis.dll in the ext of the php interpreter. You will find that modules such as mysql are also placed Here, then open php.ini, find ;extension=php_bz2.dll
, add extension=php_redis.dll
,
is in the extension In the header of the configuration area, add the redis configuration. The installation is complete.
③ Check the configuration information
Restart the server or restart the computer, add a view page: phpinfo.php under the path of index.php, add:
<?php echo phpinfo(); ?>
Then visit http://yourdomain.com/phpinfo.php, you can see the configuration information and look for information on whether redis configuration is successful , if so, the configuration is complete.
3. Use PHP native method to operate redis
// 原生redis类库,不需要config/redis.php $redis = new Redis(); $redis->connect('127.0.0.1',6379); //$redis->set('key10','xx10',20);//第三个参数是存续时间,单位是秒,如果不填则为永久 echo $redis->get('key10');
4. Configure redis.php
Create the file redis.php under myApplication/config:
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * Created by PhpStorm. * Date: 2017/2/9 * Time: 13:32 */ $config['socket_type'] = 'tcp'; $config['host'] = '127.0.0.1'; $config['password'] = NULL; $config['port'] = 6379; $config['timeout'] = 0; ?>
No matter This configuration file is required whether you use the framework's redis library or the following custom redis library.
In addition to configuring redis.php, the cache type we use must also be configured in
application/config/config.php. The default is like this:
$config['sess_driver'] = 'files'; $config['sess_cookie_name'] = 'ci_session'; $config['sess_expiration'] = 7200; $config['sess_save_path'] = NULL; $config['sess_match_ip'] = FALSE; $config['sess_time_to_update'] = 300; $config['sess_regenerate_destroy'] = FALSE;
If we use redis, then the configuration should be similar to this:
$config['sess_driver'] = 'redis'; $config['sess_cookie_name'] = 'ci_session'; $config['sess_expiration'] = 0; $config['sess_save_path'] = 'tcp://127.0.0.1:xxxx'; $config['sess_match_ip'] = FALSE; $config['sess_time_to_update'] = 600; $config['sess_regenerate_destroy'] = TRUE;
5 , using the redis library of the CI framework
// 框架的redis库 $this->load->driver('cache'); $this->cache->redis->save('key11','xx11');//这里注意,第三个参数是时间,在自定义redis库会说明 echo $this->cache->redis->get('key11');
6. Using a custom redis class library
① Rediscli_default.php
The custom redis class library can be copied from system/libraries/Cache/drivers/Cache_redis.php and renamed Rediscli_default .php, the class name is also changed to Rediscli_default, no other changes are needed, you can add more methods yourself. Place it under myApplication/libraries/Rediscli/drivers/
② Rediscli.php
Create a Rediscli.php## under myApplication/libraries/Rediscli/
#
<?php defined ( 'BASEPATH' ) or exit ( 'No direct script access allowed' ); /** * Created by PhpStorm. * Date: 2017/2/9 * Time: 20:00 */ class Rediscli extends CI_Driver_Library { public $valid_drivers; public $CI; function __construct() { $this->CI = & get_instance (); $this->valid_drivers = array ( 'default' ); } }
③ Call
// 自定义类,需要配置 $this->load->driver('rediscli'); if ($this->rediscli->default->is_supported()) { echo $this->rediscli->default->get('key2'); }
④ Time
This custom redis library is the same as the framework library, so we will focus on it here.$this->cache->redis->save('key11','xx11',1000);This is the saved value. The third parameter is the time, which cannot be omitted. By looking at the function, you can see that the default value of this parameter is 60 seconds, not permanent, so this parameter cannot be omitted.
7. Pay attention to this situation
// 文本存储 $this->load->driver('cache',array('adapter'=>'redis','backup'=>'file')); $this->cache->save('key5','xx5',10000); echo $this->cache->get('key5');//xx5The meaning of this code is, first of all Use redis to store, if not found, use text storage. You will find that text files are stored in myApplication/cache, and each key will have one text. Because no error is reported, you may not know where this data exists for a while. It’s better to use this less often. After all, redis is used for faster speed. Articles you may be interested in:
Explanation of TCP server and client functions implemented by PHP programming
Explanation on how to implement regular matching of provinces and cities in PHP
PHP closure definition and use simple example php skills
The above is the detailed content of PHP framework CodeIgniter uses redis to explain the method. For more information, please follow other related articles on the PHP Chinese website!

什么是PHP框架?为什么要使用PHP框架?本篇文章就来和大家聊聊PHP框架的优势,并总结分享11款2023年最流行的PHP框架,希望对大家有所帮助!

随着移动互联网的快速发展和用户需求的变化,消息推送系统已成为现代应用程序不可或缺的一部分,它能够实现即时通知、提醒、推广、社交等功能,为用户和商业客户提供更好的体验和服务。为了满足这一需求,本文将介绍如何使用PHP框架Lumen开发一个高效的消息推送系统,提供及时的推送服务。一、Lumen简介Lumen是由Laravel框架开发团队开发的一个微框架,它是一个

如果想快速进行php web开发,选择一个好用的php开发框架至关重要,一个好的php开发框架可以让开发工作变得更加快捷、安全和有效。那2023年最流行的php开发框架有哪些呢?这些php开发框架排名如何?

在编程中,框架扩展了构建通用软件应用程序的支撑结构。在你开始编码之前,框架就会将程序的基本功能插入到你的应用程序中,从而简化了软件的开发过程。

标题:安全加固PHP框架的实施措施引言:随着互联网的快速发展,安全问题成为了一个不可忽视的挑战。而作为最常用的编程语言之一,PHP的安全性也备受关注。为了提高PHP框架的安全性,我们需要采取一系列的实施措施。本文将介绍一些基本的安全加固措施,并提供相应的代码示例。一、输入过滤和验证1.1XSS(跨站脚本攻击)过滤在PHP框架中,使用htmlspecialc

随着移动互联网的发展,即时通信变得越来越重要,越来越普及。对于很多企业而言,实时聊天更像是一种通信服务,提供便捷的沟通方式,可以快速有效地解决业务方面的问题。基于此,本文将介绍如何使用PHP框架CodeIgniter开发一个实时聊天应用。了解CodeIgniter框架CodeIgniter是一个轻量级的PHP框架,提供了一系列的简便的工具和库,帮助开发者快速

随着云计算技术的不断发展,数据的备份已经成为了每个企业必须要做的事情。在这样的背景下,开发一款高可用的云备份系统尤为重要。而PHP框架Yii是一款功能强大的框架,可以帮助开发者快速构建高性能的Web应用程序。下面将介绍如何使用Yii框架开发一款高可用的云备份系统。设计数据库模型在Yii框架中,数据库模型是非常重要的一部分。因为数据备份系统需要用到很多的表和关

深入探讨swoole协程与PHP框架的结合开发国内的互联网发展迅速,更多的开发者开始寻找高性能的解决方案来满足日益增长的用户需求。在PHP领域,swoole协程是一个备受关注的技术,它可以大幅提升PHP的性能,并且非常适合与PHP框架结合使用。本文将深入探讨swoole协程与PHP框架的结合开发,并附带一些代码示例。一、什么是swoole协程swoole是一


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
