Skip to content

Releases: vapor/redis

Redis 4.0.0 Beta 2

13 Dec 02:14
Compare
Choose a tag to compare
Redis 4.0.0 Beta 2 Pre-release
Pre-release
  • 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

04 Aug 20:56
b6c0c98
Compare
Choose a tag to compare

Fixed:

  • Concurrent commands should now be able to be sent on the same RedisClient (#149)

Redis 4.0.0 Alpha 1

24 Jun 18:57
c08ccbb
Compare
Choose a tag to compare

Redis 3.3.1

08 May 16:39
Compare
Choose a tag to compare

New:

  • Added convenience method for LREM (#141)
  • Added convenience methods for HMSET and HMGET (#142)

Fixed:

  • Swift 5 Compiler warnings due to fileprivate access modifiers (#145)

Redis 3.3.0

02 Mar 01:57
Compare
Choose a tag to compare

New:

  • Added convenience methods for LPOP, BLPOP, BRPOP, and BRPOPLPUSH. (#138)
  • Added convenience methods for ZADD, ZCOUNT, ZRANGE, ZRANGEBYSCORE, and ZREM (#138)

Redis 3.2.0

26 Feb 19:06
136f0b6
Compare
Choose a tag to compare

New:

  • Added helpers for hash operations HSET, HKEYS, HGET, HDEL, and HGETALL. (#125)

Redis 3.1.0

07 Feb 20:59
b14ae41
Compare
Choose a tag to compare

New:

  • Adds Array conformance to RedisDataConvertible. (#130)
  • Adds string support to Int conformance to RedisDataConvertible. (#131)
  • Adds convenience methods for set operations. (#129)

Redis 3.0.3

24 Jan 00:49
cec3ee1
Compare
Choose a tag to compare

Fixed:

  • Fixed a duplicate message warning. (#134)

Redis 3.0.2

17 Sep 14:56
2fb2063
Compare
Choose a tag to compare

Fixed:

  • Added support for parsing null arrays. (#123)

Redis 3.0.1

28 Aug 06:07
1cac39d
Compare
Choose a tag to compare

Fix:

  • The EXPIRE command now works as expected. (#122)