Releases: MichaCo/CacheManager
Releases · MichaCo/CacheManager
0.4.4 Nuget Release
- Lots of documentation added
- Added support for app/web.config connectionstring as configuration source for Redis
0.4.3 Nuget Release
- Lots of code documentation updated and added
- Added .Net Framework 4.0 versions of our projects (not all)
0.4.2 Nuget Release
- Added couchbase cache handle based on the Couchbase.Net.Client v2
- Added configuration builder for RedisConfiguration
- Added extensions for all cache handles and other configurations to the ConfigurationBuilder which simplifies the code needed to configure via builder
0.4.1
0.4.0 Nuget release
- Added Redis to the list of cache handle implementations.
Full implementation based on StackExchange.Redis; Using transaction forUpdate
- New
ICacheBackPlate
interface to help synchronizing multiple cache clients working on a distributed cache with an in-process cache on top.
This is needed because if one client for example removes an item, all other clients still store the item in process, although the item is not valid anymore and has been removed from the distributed cache layer...
Using Redis' pub/sub feature for that... - Many bug fixes and improvements.
- Lot of testing for the Redis implementation to get maximum performance