Redis
TerryWater
不知道自己什么时候会死,不知道什么是神仙,不知道什么是佛,只知道自己现在活着,那么,就做活着的事情,做人的事情,快乐和痛苦都是做人的享受!
很不喜欢人间那深深的夜晚,令人心乱的孤寂!那么,在夜晚和孤寂的时候我就写博客!!
展开
-
redis 订阅 发布
1.publish.php<?php //publish.php $redis = new Redis(); $redis->pconnect('10.10.10.252',6379);$redis->auth('rds!FD');for($i=1;$i<=10;$i++){ $redis->publish('chan-1', 'hello, world!原创 2015-12-28 16:48:34 · 420 阅读 · 0 评论 -
redis 消息队列
http://shift-alt-ctrl.iteye.com/blog/1867454http://redis.io/topics/pubsubhttp://www.360doc.com/content/15/0512/15/1073512_469935043.shtmlhttp://shift-alt-ctrl.iteye.com/blog/186745原创 2015-12-13 18:09:29 · 665 阅读 · 0 评论 -
redis 队列 生产者 消费者模式
1.生产者:<?php //publish.php $redis = new Redis(); $redis->pconnect('10.10.10.252',6379);$redis->auth('rds!2016!FD');for($i=1;$i<=10;$i++){ //$redis->publish('chan-1', 'hello, world!原创 2015-12-29 12:29:02 · 6754 阅读 · 0 评论 -
php redis 的一些操作常例!
http://redis.readthedocs.org/en/2.4/list.html#lremhttp://www.gosoa.com.cn/tag/phphttp://www.phpac.com/72.html原创 2015-12-29 12:31:27 · 441 阅读 · 0 评论 -
yii2 redis 使用 unixSocket
1. yii2中redis的配置:'redis' => [ 'class' => 'yii\redis\Connection', 'hostname' => 'localhost', 'port' => 6379, 'database' => 0, //'unixSocket' => '/va原创 2015-12-28 17:53:58 · 1827 阅读 · 0 评论 -
redis 的五种类型以及对应操作
1.字符型 StringSET:set str1 worldOKGET:get str1"world"Delete: 返回值为1,说明删除成功,如果str1不存在,则返回0del str1(integer) 12.列表操作 List:RPUSH:在LIST的右侧插入数据:rpush list1 item(integer) 1LPOP:在原创 2015-12-30 11:37:44 · 1133 阅读 · 0 评论 -
magento + redis 安装
1wget http://redis.googlecode.com/files/redis-2.4.11.tar.gztar xzf redis-2.4.11.tar.gzcd redis-2.4.11make2cd srccp redis-server /usr/local/bin/cp redis-cli /usr/local/bin/3mkdir /e原创 2013-12-26 22:40:41 · 1844 阅读 · 0 评论 -
使用Python操作Redis
转载地址:http://debugo.com/python-redis/1. 安装pyredis首先安装pip# apt-get install python-pip......# pip install --proxy=http://172.1.2.6:8080 redis Downloading redis-2.9.1.tar.gz (62kB): 62kB转载 2016-04-06 12:08:17 · 461 阅读 · 0 评论