Releases: goldfix/Redis.Cache
Version 0.9.2
- 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
- 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
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
Add base functions
Unit Test
Small optimization
Update Referenced Library
Version 0.7
- Added support to compression values
- Other small fixes
Version 0.6
First Version for: Nuget Package
Nuget: https://www.nuget.org/packages/Redis.Cache/
Version 0.5
- Add base functions
- Unit Test