我的编程空间,编程开发者的网络收藏夹
学习永远不晚

ci框架如何用redis队列

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

ci框架如何用redis队列

ci框架如何用redis队列

ci框架用redis队列的示例:

在autoload.php中加入如下配置行:

$autoload['libraries'] = array('redis');

在/application/config中加入文件redis.php,文件内容如下:

// Default connection group

$config['redis_default']['host'] = 'localhost'; // IP address or host

$config['redis_default']['port'] = '6379'; // Default Redis port is 6379

$config['redis_default']['password'] = ''; // Can be left empty when the server does not require AUTH

$config['redis_slave']['host'] = '';

$config['redis_slave']['port'] = '6379';

$config['redis_slave']['password'] = '';

?>

在/application/libraries中加入文件Redis.php,文件内容如下:

class CI_Redis {

private $_ci;

private $_connection;

public $debug = FALSE;

const CRLF = "\r\n";

public function __construct($params = array())

{

log_message('debug', 'Redis Class Initialized');

$this->_ci = get_instance();

$this->_ci->load->config('redis');

// Check for the different styles of configs

if (isset($params['connection_group']))

{

// Specific connection group

$config = $this->_ci->config->item('redis_' . $params['connection_group']);

}

elseif (is_array($this->_ci->config->item('redis_default')))

{

// Default connection group

$config = $this->_ci->config->item('redis_default');

}

else

{

// Original config style

$config = array(

'host' => $this->_ci->config->item('redis_host'),

'port' => $this->_ci->config->item('redis_port'),

'password' => $this->_ci->config->item('redis_password'),

);

}

// Connect to Redis

$this->_connection = @fsockopen($config['host'], $config['port'], $errno, $errstr, 3);

// Display an error message if connection failed

if ( ! $this->_connection)

{

show_error('Could not connect to Redis at ' . $config['host'] . ':' . $config['port']);

}

// Authenticate when needed

$this->_auth($config['password']);

}

public function __call($method, $arguments)

{

$request = $this->_encode_request($method, $arguments);

return $this->_write_request($request);

}

public function command($string)

{

$slices = explode(' ', $string);

$request = $this->_encode_request($slices[0], array_slice($slices, 1));

return $this->_write_request($request);

}

private function _auth($password = NULL)

{

// Authenticate when password is set

if ( ! empty($password))

{

// See if we authenticated successfully

if ($this->command('AUTH ' . $password) !== 'OK')

{

show_error('Could not connect to Redis, invalid password');

}

}

}

public function _clear_socket()

{

// Read one character at a time

fflush($this->_connection);

return NULL;

}

private function _write_request($request)

{

if ($this->debug === TRUE)

{

log_message('debug', 'Redis unified request: ' . $request);

}

// How long is the data we are sending?

$value_length = strlen($request);

// If there isn't any data, just return

if ($value_length <= 0) return NULL;

// Handle reply if data is less than or equal to 8192 bytes, just send it over

if ($value_length <= 8192)

{

fwrite($this->_connection, $request);

}

else

{

while ($value_length > 0)

{

// If we have more than 8192, only take what we can handle

if ($value_length > 8192) {

$send_size = 8192;

}

// Send our chunk

fwrite($this->_connection, $request, $send_size);

// How much is left to send?

$value_length = $value_length - $send_size;

// Remove data sent from outgoing data

$request = substr($request, $send_size, $value_length);

}

}

// Read our request into a variable

$return = $this->_read_request();

// Clear the socket so no data remains in the buffer

$this->_clear_socket();

return $return;

}

private function _read_request()

{

$type = fgetc($this->_connection);

// Times we will attempt to trash bad data in search of a

// valid type indicator

$response_types = array('+', '-', ':', '$', '*');

$type_error_limit = 50;

$try = 0;

while ( ! in_array($type, $response_types) && $try < $type_error_limit)

{

$type = fgetc($this->_connection);

$try++;

}

if ($this->debug === TRUE)

{

log_message('debug', 'Redis response type: ' . $type);

}

switch ($type)

{

case '+':

return $this->_single_line_reply();

break;

case '-':

return $this->_error_reply();

break;

case ':':

return $this->_integer_reply();

break;

case '$':

return $this->_bulk_reply();

break;

case '*':

return $this->_multi_bulk_reply();

break;

default:

return FALSE;

}

}

private function _single_line_reply()

{

$value = rtrim(fgets($this->_connection));

$this->_clear_socket();

return $value;

}

private function _error_reply()

{

// Extract the error message

$error = substr(rtrim(fgets($this->_connection)), 4);

log_message('error', 'Redis server returned an error: ' . $error);

$this->_clear_socket();

return FALSE;

}

private function _integer_reply()

{

return (int) rtrim(fgets($this->_connection));

}

private function _bulk_reply()

{

// How long is the data we are reading? Support waiting for data to

// fully return from redis and enter into socket.

$value_length = (int) fgets($this->_connection);

if ($value_length <= 0) return NULL;

$response = '';

// Handle reply if data is less than or equal to 8192 bytes, just read it

if ($value_length <= 8192)

{

$response = fread($this->_connection, $value_length);

}

else

{

$data_left = $value_length;

// If the data left is greater than 0, keep reading

while ($data_left > 0 ) {

// If we have more than 8192, only take what we can handle

if ($data_left > 8192)

{

$read_size = 8192;

}

else

{

$read_size = $data_left;

}

// Read our chunk

$chunk = fread($this->_connection, $read_size);

// Support reading very long responses that don't come through

// in one fread

$chunk_length = strlen($chunk);

while ($chunk_length < $read_size)

{

$keep_reading = $read_size - $chunk_length;

$chunk .= fread($this->_connection, $keep_reading);

$chunk_length = strlen($chunk);

}

$response .= $chunk;

// Re-calculate how much data is left to read

$data_left = $data_left - $read_size;

}

}

// Clear the socket in case anything remains in there

$this->_clear_socket();

return isset($response) ? $response : FALSE;

}

private function _multi_bulk_reply()

{

// Get the amount of values in the response

$response = array();

$total_values = (int) fgets($this->_connection);

// Loop all values and add them to the response array

for ($i = 0; $i < $total_values; $i++)

{

// Remove the new line and carriage return before reading

// another bulk reply

fgets($this->_connection, 2);

// If this is a second or later pass, we also need to get rid

// of the $ indicating a new bulk reply and its length.

if ($i > 0)

{

fgets($this->_connection);

fgets($this->_connection, 2);

}

$response[] = $this->_bulk_reply();

}

// Clear the socket

$this->_clear_socket();

return isset($response) ? $response : FALSE;

}

private function _encode_request($method, $arguments = array())

{

$request = '$' . strlen($method) . self::CRLF . $method . self::CRLF;

$_args = 1;

// Append all the arguments in the request string

foreach ($arguments as $argument)

{

if (is_array($argument))

{

foreach ($argument as $key => $value)

{

// Prepend the key if we're dealing with a hash

if (!is_int($key))

{

$request .= '$' . strlen($key) . self::CRLF . $key . self::CRLF;

$_args++;

}

$request .= '$' . strlen($value) . self::CRLF . $value . self::CRLF;

$_args++;

}

}

else

{

$request .= '$' . strlen($argument) . self::CRLF . $argument . self::CRLF;

$_args++;

}

}

$request = '*' . $_args . self::CRLF . $request;

return $request;

}

public function info($section = FALSE)

{

if ($section !== FALSE)

{

$response = $this->command('INFO '. $section);

}

else

{

$response = $this->command('INFO');

}

$data = array();

$lines = explode(self::CRLF, $response);

// Extract the key and value

foreach ($lines as $line)

{

$parts = explode(':', $line);

if (isset($parts[1])) $data[$parts[0]] = $parts[1];

}

return $data;

}

public function debug($bool)

{

$this->debug = (bool) $bool;

}

function __destruct()

{

if ($this->_connection) fclose($this->_connection);

}

}

?>

在文件中使用,代码:

if($this->redis->get('mark_'.$gid) === null){ //如果未设置

$this->redis->set('mark_'.$gid, $giftnum); //设置

$this->redis->EXPIRE('mark_'.$gid, 30*60); //设置过期时间 (30 min)

}else{

$giftnum = $this->redis->get('mark_'.$gid); //从缓存中直接读取对应的值

}

?>

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

ci框架如何用redis队列

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

如何使用redis队列

redis 队列是一种基于 redis 数据结构的高级队列系统,提供了高效的消息传递机制。用户可通过以下步骤使用 redis 队列:1. 使用 rpush 命令创建队列。2. 使用 rpush 命令入队消息。3. 使用 lpop 命令出队消
如何使用redis队列
2024-06-12

ci框架如何去掉index.php

这篇“ci框架如何去掉index.php”文章,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要参考一下,对于“ci框架如何去掉index.php”,小编整理了以下知识点,请大家跟着小编的步伐一步一步的慢慢理解,接下来
2023-06-06

laravel如何使用redis队列

这篇文章将为大家详细讲解有关laravel如何使用redis队列,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。1、队列配置文件是config/queue.php(这里我默认配置即可):2、 创建迁移表(f
2023-06-14

Python的Flask框架应用调用Redis队列数据的方法

任务异步化 打开浏览器,输入地址,按下回车,打开了页面。于是一个HTTP请求(request)就由客户端发送到服务器,服务器处理请求,返回响应(response)内容。 我们每天都在浏览网页,发送大大小小的请求给服务器。有时候,服务器接到了
2022-06-04

java如何用redis做消息队列

本指南提供了如何在Java应用中使用Redis作为消息队列的全面教程。内容涵盖依赖项、Redis配置、连接与发送消息、订阅频道、数据结构、发布/订阅模式、持久化和最佳实践。通过遵循本指南,Java开发人员可以轻松将Redis集成到他们的应用中,实现高效、可扩展的消息传递。
java如何用redis做消息队列
2024-04-02

CI框架中如何添加CSS样式?

如何在CI框架中引入CSS样式CSS(层叠样式表)在网页设计中起着非常重要的作用,它可以控制网页的布局、样式和装饰效果。在使用CodeIgniter(CI)框架开发网站时,引入CSS样式表是必不可少的一步。本文将详细介绍在CI框架中如何引
CI框架中如何添加CSS样式?
2024-01-16

Redis如何实现延迟队列

目录Redis实现延迟队列Redis延迟队列Redis实现延时队列的优化方案延时队列的应用延时队列的实现总结Redis实现延迟队列Redis延迟队列Redis 是通过有序集合(ZSet)的方式来实现延迟消息队列的,ZSet 有一个 Sc
2023-04-28

redis如何实现消息队列

Redis可以实现消息队列的功能,常用的实现方式是使用Redis的List数据结构来存储消息队列中的消息。具体实现步骤如下:将消息添加到队列中:使用Redis的LPUSH命令将消息添加到队列的头部(即左侧),使用RPUSH命令将消息添加到
redis如何实现消息队列
2024-04-22

redis队列满后如何解决

当 Redis 队列满后,可以通过以下几种方式解决:增加 Redis 队列的容量:可以通过增加 Redis 的内存大小或者增加 Redis 集群的节点数量来增加队列的容量,以容纳更多的数据。建立多个队列:可以将需要处理的数据分散到多个队列中
2023-10-26

redis延迟队列如何实现

redis 延迟队列的实现采用有序集合,将任务以分数(时间戳)存储,定期检索已到期的任务,删除并执行。步骤如下:创建有序集合 delayed_queue,将任务以分数(时间戳)存储。检索已到期的任务,分数介于 0 到当前时间戳之间。删除已到
redis延迟队列如何实现
2024-06-12

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录