Skip navigation links
C D E G H I J L M O R S T U Z 

C

closeJedis(Jedis) - Static method in class com.github.cynaith.util.JedisPool
 
com.github.cynaith - package com.github.cynaith
 
com.github.cynaith.exceptions - package com.github.cynaith.exceptions
 
com.github.cynaith.jedis - package com.github.cynaith.jedis
 
com.github.cynaith.util - package com.github.cynaith.util
 
CutTime - Class in com.github.cynaith.util
 

D

del(String) - Method in class com.github.cynaith.jedis.Ledis
 
del(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 

E

endTime() - Method in class com.github.cynaith.util.CutTime
 
exists(String) - Method in class com.github.cynaith.jedis.Ledis
 
exists(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 

G

get(String) - Method in class com.github.cynaith.jedis.Ledis
 
get(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
getInstance() - Static method in class com.github.cynaith.util.CutTime
 
getJedis() - Static method in class com.github.cynaith.util.JedisPool
 
getLedis() - Method in class com.github.cynaith.jedis.LedisInterceptor
 
getObject() - Method in class com.github.cynaith.jedis.LedisInterceptor
 

H

hdel(String, String...) - Method in class com.github.cynaith.jedis.Ledis
 
hdel(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
 
hexists(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
hexists(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
hgetAll(String) - Method in class com.github.cynaith.jedis.Ledis
 
hgetAll(String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取全部元素k-V 包括Object和String
hkeys(String) - Method in class com.github.cynaith.jedis.Ledis
 
hkeys(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
hlen(String) - Method in class com.github.cynaith.jedis.Ledis
 
hlen(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
hmget(String, String...) - Method in class com.github.cynaith.jedis.Ledis
 
hmget(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
获取Hash中一个或多个元素value 包含Object和String
hmset(String, Map<String, Object>) - Method in class com.github.cynaith.jedis.Ledis
 
hmset(String, Map<String, Object>) - Method in interface com.github.cynaith.jedis.LedisCommands
Map(String,String)和Map(byte[],byte[]) 转换成 Map(String,Object) 注:Object支持String,会自动转换
hset(String, String, Object) - Method in class com.github.cynaith.jedis.Ledis
 
hset(String, String, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
支持向HashMap插入Object
hvals(String) - Method in class com.github.cynaith.jedis.Ledis
 
hvals(String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取全部元素的value 包括Object和String

I

intercept(Object, Method, Object[], MethodProxy) - Method in class com.github.cynaith.jedis.LedisInterceptor
 
isEmpty(Object) - Static method in class com.github.cynaith.util.ObjectUtil
 

J

JedisNullException - Exception in com.github.cynaith.exceptions
 
JedisNullException(String) - Constructor for exception com.github.cynaith.exceptions.JedisNullException
 
JedisNullException(String, Throwable) - Constructor for exception com.github.cynaith.exceptions.JedisNullException
 
JedisNullException(Throwable) - Constructor for exception com.github.cynaith.exceptions.JedisNullException
 
JedisPool - Class in com.github.cynaith.util
 

L

Ledis - Class in com.github.cynaith.jedis
 
Ledis(String, int) - Constructor for class com.github.cynaith.jedis.Ledis
 
Ledis(String, int, String) - Constructor for class com.github.cynaith.jedis.Ledis
 
LedisCommands - Interface in com.github.cynaith.jedis
在Ledis中 key只允许String类型 除SortSet外,value都可以为Object
LedisDataException - Exception in com.github.cynaith.exceptions
 
LedisDataException() - Constructor for exception com.github.cynaith.exceptions.LedisDataException
 
LedisDataException(String) - Constructor for exception com.github.cynaith.exceptions.LedisDataException
 
LedisInterceptor - Class in com.github.cynaith.jedis
USER: lynn DATE: 2020/5/3
LedisInterceptor(Ledis) - Constructor for class com.github.cynaith.jedis.LedisInterceptor
 
lindex(String, int) - Method in class com.github.cynaith.jedis.Ledis
 
lindex(String, int) - Method in interface com.github.cynaith.jedis.LedisCommands
 
llen(String) - Method in class com.github.cynaith.jedis.Ledis
 
llen(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
lpop(String) - Method in class com.github.cynaith.jedis.Ledis
 
lpop(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
lpush(String, String...) - Method in class com.github.cynaith.jedis.Ledis
以上为String操作 以下为List操作
lpush(String, Object...) - Method in class com.github.cynaith.jedis.Ledis
从左边追加一个Object到list(key)中
lpush(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
 
lpush(String, Object...) - Method in interface com.github.cynaith.jedis.LedisCommands
从左边追加一个Object到list(key)中
LRedis - Interface in com.github.cynaith
 
lrem(String, long, Object) - Method in class com.github.cynaith.jedis.Ledis
 
lrem(String, long, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
增加对Object的删除
lset(String, int, Object) - Method in class com.github.cynaith.jedis.Ledis
 
lset(String, int, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
增加对Object的修改
ltrim(String, int, int) - Method in class com.github.cynaith.jedis.Ledis
 
ltrim(String, int, int) - Method in interface com.github.cynaith.jedis.LedisCommands
 

M

mget(String...) - Method in class com.github.cynaith.jedis.Ledis
 
mget(String...) - Method in interface com.github.cynaith.jedis.LedisCommands
 
mgetWithNull(String, String...) - Method in class com.github.cynaith.jedis.Ledis
当key不存在时,返回emptyValue
mgetWithNull(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
获取多个key 当key不存在时,返回emptyValue

O

ObjectUtil - Class in com.github.cynaith.util
USER: lynn DATE: 2020/5/3
ObjectUtil() - Constructor for class com.github.cynaith.util.ObjectUtil
 

R

randomKey() - Method in class com.github.cynaith.jedis.Ledis
 
randomKey() - Method in interface com.github.cynaith.jedis.LedisCommands
 
rename(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
rename(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
rpop(String) - Method in class com.github.cynaith.jedis.Ledis
 
rpop(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
rpush(String, String...) - Method in class com.github.cynaith.jedis.Ledis
 
rpush(String, Object...) - Method in class com.github.cynaith.jedis.Ledis
从右边追加一个Object到list(key)中
rpush(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
 
rpush(String, Object...) - Method in interface com.github.cynaith.jedis.LedisCommands
从右边追加一个Object到list(key)中

S

sadd(String, Object...) - Method in class com.github.cynaith.jedis.Ledis
 
sadd(String, Object...) - Method in interface com.github.cynaith.jedis.LedisCommands
Set不允许出现重复元素 对象属性相同也是重复的
scan(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
scan(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
scared(String) - Method in class com.github.cynaith.jedis.Ledis
 
scared(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
sdiff(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
sdiff(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取集合key1和key2的差集 (不区分对象字符串)
serialize(Object) - Static method in class com.github.cynaith.util.SerializeObjectTool
 
SerializeObjectTool - Class in com.github.cynaith.util
 
SerializeObjectTool() - Constructor for class com.github.cynaith.util.SerializeObjectTool
 
set(String, Object) - Method in class com.github.cynaith.jedis.Ledis
 
set(String, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
 
setJedis(Jedis) - Method in class com.github.cynaith.jedis.Ledis
 
setnx(String, Object) - Method in class com.github.cynaith.jedis.Ledis
 
setnx(String, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
 
sinter(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
sinter(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取集合key1和key2的交集 (不区分对象字符串)
smember(String) - Method in class com.github.cynaith.jedis.Ledis
 
smember(String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取key对应Set的所有元素 (不区分对象字符串)
smove(String, String, Object) - Method in class com.github.cynaith.jedis.Ledis
 
smove(String, String, Object) - Method in interface com.github.cynaith.jedis.LedisCommands
将元素从 key1(Set) 中移到 key2(Set) 中 (不区分对象字符串)
sort(String) - Method in class com.github.cynaith.jedis.Ledis
 
sort(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
sortObj(String) - Method in class com.github.cynaith.jedis.Ledis
 
sortObj(String) - Method in interface com.github.cynaith.jedis.LedisCommands
代优化 对象排序 好像没有用 可以加一个对象参数排序(仅支持int、long);
spop(String) - Method in class com.github.cynaith.jedis.Ledis
 
spop(String) - Method in interface com.github.cynaith.jedis.LedisCommands
随机删除一个元素 (不区分对象字符串)
srem(String, Object...) - Method in class com.github.cynaith.jedis.Ledis
 
srem(String, Object...) - Method in interface com.github.cynaith.jedis.LedisCommands
删除key对应Set中的Object (也可以是String)
startTime() - Method in class com.github.cynaith.util.CutTime
 
sunion(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
sunion(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
获取集合key1和key2的并集 (不区分对象字符串)

T

type(String) - Method in class com.github.cynaith.jedis.Ledis
 
type(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 

U

unserizlize(byte[]) - Static method in class com.github.cynaith.util.SerializeObjectTool
 
UnserizlizeException - Exception in com.github.cynaith.exceptions
 
UnserizlizeException() - Constructor for exception com.github.cynaith.exceptions.UnserizlizeException
 
UnserizlizeException(String) - Constructor for exception com.github.cynaith.exceptions.UnserizlizeException
 

Z

zadd(String, Map<String, Double>) - Method in class com.github.cynaith.jedis.Ledis
 
zadd(String, double, String) - Method in class com.github.cynaith.jedis.Ledis
 
zadd(String, Map<String, Double>) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zadd(String, double, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zcard(String) - Method in class com.github.cynaith.jedis.Ledis
 
zcard(String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zcount(String, double, double) - Method in class com.github.cynaith.jedis.Ledis
 
zcount(String, double, double) - Method in interface com.github.cynaith.jedis.LedisCommands
获取ZSet中score在[i,j]区间的元素个数
zincrby(String, double, String) - Method in class com.github.cynaith.jedis.Ledis
 
zincrby(String, double, String) - Method in interface com.github.cynaith.jedis.LedisCommands
把ZSet中value元素的score+=n
zrangByScoreWithScores(String, double, double) - Method in class com.github.cynaith.jedis.Ledis
 
zrangByScoreWithScores(String, double, double) - Method in interface com.github.cynaith.jedis.LedisCommands
修改原返回值 Map(Tuple) 为 Map(String , Double)
zrange(String, int, int) - Method in class com.github.cynaith.jedis.Ledis
 
zrange(String, int, int) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zrangeByScore(String, double, double) - Method in class com.github.cynaith.jedis.Ledis
 
zrangeByScore(String, double, double) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zrangeWithScores(String, int, int) - Method in class com.github.cynaith.jedis.Ledis
 
zrangeWithScores(String, int, int) - Method in interface com.github.cynaith.jedis.LedisCommands
修改原返回值 Map(Tuple) 为 Map(String , Double)
zrank(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
zrank(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zrem(String, String...) - Method in class com.github.cynaith.jedis.Ledis
 
zrem(String, String...) - Method in interface com.github.cynaith.jedis.LedisCommands
 
zscore(String, String) - Method in class com.github.cynaith.jedis.Ledis
 
zscore(String, String) - Method in interface com.github.cynaith.jedis.LedisCommands
 
C D E G H I J L M O R S T U Z 
Skip navigation links

Copyright © 2020. All rights reserved.