Skip to content

Releases: goldfix/Redis.Cache

Version 0.9.2

23 Jun 15:50

Choose a tag to compare

Version 0.9.2 Pre-release
Pre-release
  • Fix bug: ConvertRedisValueToObject
  • Small optimization.
  • Code Refactoring.

Important!

Changed serialization TTL and Date / Time. This version is not compatible with previous versions. Is necessary to empty database (used to save cache items) and reboot your Redis Server instance.

What changed?

It is changed format serialization of TTL and Date / Time of items.

  • Old format TTL serialization was: hhmmss. Sample: 002000 == 20 minutes.
  • New format TTL serialization is: total seconds. Sample: 1200 == 20 minutes.
  • Old format Date/Time serialization was: yyyyMMddThhmmss. Sample: 20140120T010203
  • New format Date/Time serialization was: yyMMddThhmmss. Sample: 140120T010203

Why?

This format is shorter and more compatible between Python and C#.

Version 0.9.1

23 Jun 15:09

Choose a tag to compare

Version 0.9.1 Pre-release
Pre-release
  • Small optimization.
  • Code Refactoring.

Important!

Changed serialization TTL and Date / Time. This version is not compatible with previous versions. Is necessary to empty database (used to save cache items) and reboot your Redis Server instance.

What changed?

It is changed format serialization of TTL and Date / Time of items.

  • Old format TTL serialization was: hhmmss. Sample: 002000 == 20 minutes.
  • New format TTL serialization is: total seconds. Sample: 1200 == 20 minutes.
  • Old format Date/Time serialization was: yyyyMMddThhmmss. Sample: 20140120T010203
  • New format Date/Time serialization was: yyMMddThhmmss. Sample: 140120T010203

Why?

This format is shorter and more compatible between Python and C#.

Version 0.9

11 Jun 16:49

Choose a tag to compare

Version 0.9 Pre-release
Pre-release

Small optimization.

Important!

Changed serialization TTL. This version is not compatible with previous versions. Is necessary to empty database (used to save cache items) and reboot your Redis Server instance.

What changed?

It is changed format serialization of TTL of items.

  • Old format Serialization TTL was: hhmmss. Sample: 002000 == 20 minutes.
  • New format Serialization TTL is: total seconds. Sample: 1200 == 20 minutes.

Why?

This format is shorter and more compatible between Python and C#.

Version 0.8

21 May 14:59

Choose a tag to compare

Version 0.8 Pre-release
Pre-release

Add base functions
Unit Test
Small optimization
Update Referenced Library

Version 0.7

29 Apr 08:53

Choose a tag to compare

Version 0.7 Pre-release
Pre-release
  • Added support to compression values
  • Other small fixes

Version 0.6

27 Apr 12:42

Choose a tag to compare

Version 0.6 Pre-release
Pre-release

First Version for: Nuget Package
Nuget: https://www.nuget.org/packages/Redis.Cache/

Version 0.5

27 Apr 11:42

Choose a tag to compare

Version 0.5 Pre-release
Pre-release
  • Add base functions
  • Unit Test