Skip to content

Releases: DevSrSouza/Redissed

v1.1.0

31 Jul 20:26
Compare
Choose a tag to compare

New expire extension for delegates.
Set a time to that key expire when set.

var str: String? by string().expire(5) // when set, will expire in 5 seconds

**Time in seconds

New withExpire extension for delegate
Pair with the time and expiration time of that key.

var str: Pair<String, Int> by string("A default string").withExpire()

str = "New string expiring in 30 seconds" to 30

**Time in seconds
**Expire time can return -2 if the key does not exist or -1 if the key exists but has no associated expire.

v1.0.0

23 Apr 17:01
Compare
Choose a tag to compare
  • Data parsers
  • Support for multiples redis clients

v0.1.1

20 Apr 20:43
Compare
Choose a tag to compare
  • Relicensed to Apache 2.0

v0.1.0

20 Apr 18:17
Compare
Choose a tag to compare

Add new types:

  • Boolean
  • Boolean nullable
  • Byte
  • Byte nullable
  • Short
  • Short nullable
  • Long
  • Long nullable
  • Float
  • Float nullable
  • Double
  • Double nullable

v0.0.1

20 Apr 18:10
Compare
Choose a tag to compare

Type support:

  • String
  • String nullable
  • Int
  • Int nullable
  • RedisObject