Releases: vapor/redis
Releases · vapor/redis
RedisStack Alpha 7 updates
Updates to RedisStack 1.0.0 Alpha 7 with support for Logger
passing (#157)
Redis 4.0.0 Beta 2
- Updates to latest Vapor 4 beta 2
import Redis
import Vapor
app.redis.configuration = .init(...)
app.get(...) { req in
req.redis.get(...)
}
Redis 3.4.0
Fixed:
- Concurrent commands should now be able to be sent on the same
RedisClient
(#149)
Redis 4.0.0 Alpha 1
More information on Vapor 4 alpha releases:
https://medium.com/@codevapor/vapor-4-alpha-1-releases-begin-94a4bc79dd9a
API Docs:
Redis 3.3.1
Redis 3.3.0
Redis 3.2.0
New:
- Added helpers for hash operations
HSET
,HKEYS
,HGET
,HDEL
, andHGETALL
. (#125)
Redis 3.1.0
Redis 3.0.3
Fixed:
- Fixed a duplicate message warning. (#134)
Redis 3.0.2
Fixed:
- Added support for parsing null arrays. (#123)