Releases: yatechorg/jedis-utils
Releases · yatechorg/jedis-utils
v0.5.0
v0.4.0
Introduce JedisCollections, Redis value wrappers which implement main interfaces of the java.util collections and give easy access.
Including:
JedisMap- ajava.util.Map<String,String>implementation that wraps and gives abstraction to a RedishashvalueJedisJist- ajava.util.Collection<String>implementation that wraps and gives abstraction to a RedislistvalueJedisSet- ajava.util.Set<String>implementation that wraps and gives abstraction to a RedissetvalueJedisSortedSet- ajava.util.Set<String>implementation that wraps and gives abstraction to a Rediszsetvalue
v0.3.1
Small fix: move class LuaScriptConfig to the correct package
v0.3.0
Enhance Lua script builder support.
- Thread safe prepared statements
- Use Redis' script caching (using
scriptLoadandevalsha) - Assign values to existing locals
- Supported syntax includes (newly supported commands are
emphasized):- Connection methods:
select - Keys methods:
del,expire,expireAt,keys,move,persist,pexpire,pexpireAt,pttl,randomKey,rename,renamenx,ttl,type - Hash methods:
hgetAll,hmset,hincrByFloat,hincrBy,hget,hdel - Sorted set methods:
zadd,zscore - String methods:
get,set - Control statements:
if-then-end- Conditions:
isNull
- Conditions:
- Connection methods:
v0.2.0
Enhance Lua script builder support.
- Supported syntax includes (newly supported commands are
emphasized):- Connection methods:
select - Keys methods:
del,expire,expireAt,keys,move,persist,pexpire,pexpireAt,pttl,randomKey,rename,renamenx,ttl,type - Hash methods:
hgetAll,hmset - Sorted set methods:
zadd,zscore - String methods:
get,set - Control statements:
if-then-end- Conditions:
isNull
- Conditions:
- Connection methods:
v0.1.0
First minor version, includes the basics for the Lua script builder.
- Building and executing Lua scripts
- Building and executing Lua prepared scripts which allow later binding of values to arguments (placeholders)
- Supported syntax includes:
- Connection methods:
select - Keys methods:
del - Hash methods:
hgetAll,hmset - Sorted set methods:
zadd,zscore - Control statements:
if-then-end- Conditions:
isNull
- Conditions:
- Connection methods: