redis队列操作
PHP版:
<?php
/**
* Redis
* 配置 $redis_host,$redis_port
* 队列操作
* @author win 7
*/
class RQueue{ private function __construct() {
static $redis_host="192.168.31.200";
static $redis_port="6379";
static $redis_auth="";
$this->redis = new Redis(); $this->redis->connect($redis_host,$redis_port);
} private static $_instance; public static function getInstance(){ if(!(self::$_instance instanceof self)){
self::$_instance = new self;
} return self::$_instance;
} public function get($qkey){
return $this->redis->get($qkey);
}
public function setex($qkey, $val, $expired){
return $this->redis->setex($qkey, $expired, $val);
}
/*
* 入队操作
*/
public function push($qkey, $content) {
if(is_array($content))$content = json_encode($content);
if($this->redis){
$result = $this->redis->lPush($qkey,$content);
return $result;
}else{
return false;
} }
/*
* 出队操作
*/
public function lpop($qkey) { if($this->redis){
$result = $this->redis->lPop($qkey);
return $result;
}else{
return false;
} } public function close(){
if($this->redis){
$this->redis->close();
}
}
}
调用示例:
$redis = RQueue::getInstance();
$redis->setex("testredis", "abcdefg", 1000);
$redis->push("users", array("name"=>"yangwei","age"=>23));
echo $redis->get("testredis");
echo $redis->lpop('users')."\n";
JAVA版:
public class RedisPoolUtils {
private static Logger log = Logger.getLogger(RedisPoolUtils.class.getName());
static String redis_url = "";
static int redis_port = 6379;
static String redis_pass = "";
//可用连接实例的最大数目,默认值为8;
//如果赋值为-1,则表示不限制;如果pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)。
private static int MAX_ACTIVE = 1024;
//控制一个pool最多有多少个状态为idle(空闲的)的jedis实例,默认值也是8。
private static int MAX_IDLE = 200;
//等待可用连接的最大时间,单位毫秒,默认值为-1,表示永不超时。如果超过等待时间,则直接抛出JedisConnectionException;
private static int MAX_WAIT = 10000;
private static int TIMEOUT = 10000;
//在borrow一个jedis实例时,是否提前进行validate操作;如果为true,则得到的jedis实例均是可用的;
private static boolean TEST_ON_BORROW = true;
private static JedisPool jedisPool = null;
private static ResourceBundle systemModeBundle = ResourceBundle.getBundle("system_mode");
private static ResourceBundle bundle = null;
/**
* 初始化Redis连接池
*/
static {
try {
initDB();
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxTotal(MAX_ACTIVE);
//config.setMaxActive(MAX_ACTIVE);
config.setMaxIdle(MAX_IDLE);
//config.setMaxWait(MAX_WAIT);
config.setMaxWaitMillis(MAX_WAIT);
config.setTestOnBorrow(TEST_ON_BORROW);
jedisPool = new JedisPool(config, redis_url, redis_port, TIMEOUT, redis_pass);
//jedisPool = new JedisPool(config, redis_url, redis_port, TIMEOUT);
} catch (Exception e) {
e.printStackTrace();
}
}
private static void initDB(){
String system_mode = systemModeBundle.getString("system_mode");
log.info("RedisPoolUtils init system_mode :"+system_mode);
if(Constants.SystemMode.PROD.getCode().equals(system_mode)){//生产模式
bundle = ResourceBundle.getBundle("sysConfig");
}else{//测试模式
bundle = ResourceBundle.getBundle("sysConfig_test");
}
try {
redis_url = bundle.getString("redisHost");
redis_port = Integer.valueOf(bundle.getString("redisPort"));
redis_pass = bundle.getString("redisPass");
MAX_ACTIVE = Integer.parseInt(bundle.getString("redis-max_active"));
MAX_IDLE = Integer.parseInt(bundle.getString("redis-max_idle"));
MAX_WAIT = Integer.parseInt(bundle.getString("redis-max_wait"));
TIMEOUT = Integer.parseInt(bundle.getString("redis-timeout"));
} catch (Exception e) {
log.error("Get Property Exception", e);
} finally{
}
}
/**
* 获取Jedis实例
* @return
*/
public static Jedis getJedis() {
try {
if (jedisPool != null) {
Jedis resource = jedisPool.getResource();
return resource;
} else {
return null;
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 释放jedis资源
* @param jedis
*/
public static void returnResource(final Jedis jedis) {
if (jedis != null) {
jedisPool.returnResourceObject(jedis);
// jedisPool.returnResource(jedis);
}
}
public static void main(String [] args){
Jedis jedis = RedisPoolUtils.getJedis();
jedis.set("sms_plan", "1");
String aa = jedis.get("sms_plan");
System.out.println("sms_plan :"+aa);
RedisPoolUtils.returnResource(jedis);
}
}
public class RedisUtils {
private static Logger log = Logger.getLogger(RedisUtils.class);
public static String getSmsPlan() {
String smsPlan = "1";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
smsPlan = jedis.get("sms_plan");
} catch (Exception e) {
log.error("redis获取smsPlan失败 ", e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return smsPlan;
}
/**
* 生成自增id
*
* @param key
* @return
*/
public static Long autoIncreId(String key) {
Long id = null;
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
id = jedis.incr("auto_id:" + key);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return id;
}
/**
* 缓存数据
*
* @param key
* @param val
* @return
*/
public static String cacheData(String key, String val) {
String ret = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
ret = jedis.set(key, val);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return ret;
}
/**
* 获取缓存中的数据
*
* @param key
* @return
*/
public static String getData(String key) {
String val = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
val = jedis.get(key);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return val;
}
public static String getAccessToken(){
String accessToken = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
accessToken = jedis.get("access_token");
} finally {
RedisPoolUtils.returnResource(jedis);
}
return accessToken;
}
/**
* 缓存accessToken
* @param val
* @param sec 有效期
* @return
*/
public static String setAccessToken(String val,int sec) {
String ret = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
ret = jedis.setex("access_token",sec,val);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return ret;
}
public static String getJsapiTicket(){
String jsapi_ticket = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
jsapi_ticket = jedis.get("jsapi_ticket");
} finally {
RedisPoolUtils.returnResource(jedis);
}
return jsapi_ticket;
}
/**
* 缓存jsapiTicket
* @param val
* @param sec
* @return
*/
public static String setJsapiTicket(String val,int sec) {
String ret = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
ret = jedis.setex("jsapi_ticket",sec,val);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return ret;
}
/**
* 缓存AccessToken
* @param val
* @return
*/
public static String setJDAccessToken(String val) {
String ret = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
ret = jedis.setex("jd_access_token",86400,val);
}catch (Exception e){
log.error("setAccessToken Exception",e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return ret;
}
public static String getJDAccessToken(){
String accessToken = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
accessToken = jedis.get("jd_access_token");
} catch (Exception e){
log.error("getAccessToken Exception",e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return accessToken;
}
/**
* 缓存refreshToken
* @param val
* @return
*/
public static String setRefreshToken(String val) {
String ret = "";
Jedis jedis = null;
try {
jedis = RedisPoolUtils.getJedis();
ret = jedis.set("jd_refresh_token",val);
}catch (Exception e){
log.error("setJDRefreshToken Exception",e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return ret;
}
/**
* 缓存 订单id
* @param jdOrderId
*/
public static void addJdOrderId(String jdOrderId){
Jedis jedis = null;
String key = "jdOrderId";
try {
jedis = RedisPoolUtils.getJedis();
jedis.lpush(key,jdOrderId);
}catch (Exception e){
log.error("setJDRefreshToken Exception",e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
} /**
* 取订单id
*/
public static String getJdOrderId( ){
Jedis jedis = null;
String key = "jdOrderId";
String jdOrderId = "";
try {
jedis = RedisPoolUtils.getJedis();
boolean ret = jedis.exists(key);
if(ret && jedis.llen(key) > 0){
jdOrderId = jedis.rpop(key);
}
}catch (Exception e){
log.error("setJDRefreshToken Exception",e);
} finally {
RedisPoolUtils.returnResource(jedis);
}
return jdOrderId;
}
}
redis队列操作的更多相关文章
- php redis队列操作
php redis队列操作 rpush/rpushx 有序列表操作,从队列后插入元素:lpush/lpushx 和 rpush/rpushx 的区别是插入到队列的头部,同上,'x'含义是只对已存在的 ...
- Redis 队列操作
class Program { //版本2:使用Redis的客户端管理器(对象池) public static IRedisClientsManager redisClientManager = ne ...
- python通过连接池连接redis,操作redis队列
在每次使用redis都进行连接的话会拉低redis的效率,都知道redis是基于内存的数据库,效率贼高,所以每次进行连接比真正使用消耗的资源和时间还多.所以为了节省资源,减少多次连接损耗,连接池的作用 ...
- (3)redis队列功能
Redis队列功能介绍 List 常用命令: Blpop删除,并获得该列表中的第一元素,或阻塞,直到有一个可用 Brpop删除,并获得该列表中的最后一个元素,或阻塞,直到有一个可用 Brpoplpus ...
- redis队列及多线程应用
由于xxx平台上自己的博客已经很久没更新了,一直以来都是用的印象笔记来做工作中知识的积累存根,不知不觉印象笔记里已经有了四.五百遍文章.为了从新开始能与广大攻城狮共同提高技术能力与水平,随决心另起炉灶 ...
- Python的Flask框架应用调用Redis队列数据的方法
转自:http://www.jb51.net/article/86021.htm 任务异步化 打开浏览器,输入地址,按下回车,打开了页面.于是一个HTTP请求(request)就由客户端发送到服务器, ...
- Redis服务器操作
[Redis服务器操作] 1.TIME 返回当前服务器时间. 2.DBSIZE 返回当前数据库的 key 的数量. 3.LASTSAVE 返回最近一次 Redis 成功将数据保存到磁盘上的时间,以 U ...
- 【连载】redis库存操作,分布式锁的四种实现方式[三]--基于Redis watch机制实现分布式锁
一.redis的事务介绍 1. Redis保证一个事务中的所有命令要么都执行,要么都不执行.如果在发送EXEC命令前客户端断线了,则Redis会清空事务队列,事务中的所有命令都不会执行.而一旦客户端发 ...
- .NET 环境中使用RabbitMQ RabbitMQ与Redis队列对比 RabbitMQ入门与使用篇
.NET 环境中使用RabbitMQ 在企业应用系统领域,会面对不同系统之间的通信.集成与整合,尤其当面临异构系统时,这种分布式的调用与通信变得越发重要.其次,系统中一般会有很多对实时性要求不高的 ...
随机推荐
- C++11中如何输出enum class的值
Unlike an unscoped enumeration, a scoped enumeration is not implicitly convertible to its integer va ...
- JTree常用方法
private JTree jtNetDevice;//数组件申明private JScrollPane jspTree;//滚动面板申明 1.初始化 DefaultMutableTreeNo ...
- mysql lower_case_table_names 区分表名大小写设置
Command-Line Format --lower-case-table-names[=#] System Variable Name lower_case_table_names Variabl ...
- linq操作符:限定操作符
限定操作符运算返回一个Boolean值,该值指示序列中是否有一些元素满足条件或者是否所有元素都满足条件. 一.All操作符 All方法用来确定是否序列中的所有元素都满足条件.看下面的例子: using ...
- HwPointEventFilter: do not support AFT because of no config华为手机进入工程菜单
在调试时应用报出HwPointEventFilter: do not support AFT because of no config 是因为华为系统里设置了不打印log 解决方法是在拨号界面输入*# ...
- R-table和tapply函数
table可统计数据的频数 tapply可根据因子.向量和要计算的函数计算 > class<-c(1,2,3,2,1,2,1,3) > class[1] 1 2 3 > c(8 ...
- Qt中与文件目录相关操作
一.与文件目录操作有关操作. Qt中与文件目录相关的操作在QDir中,需加入#include <QDir>语句. QDir::drives()是列出电脑根目录下的所有目录,返回的是QFil ...
- tomcat部署时war和war exploded区别
war模式—-将WEB工程以包的形式上传到服务器 war exploded模式—-将WEB工程以当前文件夹的位置关系上传到服务器
- python 判断一个对象的变量类型
isinstance 语法: isinstance(object, classinfo) 如果参数object是classinfo的实例,或者object是classinfo类的子类的一个实例, ...
- JDBC SQL语法
结构化查询语言(SQL)是一种标准化语言,允许对数据库执行操作,例如:创建数据记录,读取内容,更新内容和删除数据记录等. 本教程中将概述SQL,这是了解和学习JDBC概念的前提条件. 经过本章后,您将 ...