Skip to content

Releases: MichaCo/CacheManager

0.4.4 Nuget Release

10 Apr 18:49
Compare
Choose a tag to compare
  • Lots of documentation added
  • Added support for app/web.config connectionstring as configuration source for Redis

0.4.3 Nuget Release

04 Apr 01:52
Compare
Choose a tag to compare
  • Lots of code documentation updated and added
  • Added .Net Framework 4.0 versions of our projects (not all)

0.4.2 Nuget Release

31 Mar 17:25
Compare
Choose a tag to compare
  • 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

27 Mar 11:48
Compare
Choose a tag to compare

Some minor updates to redis cache handle. e.g. handling TimeoutException, too

0.4.0 Nuget release

22 Mar 20:58
Compare
Choose a tag to compare
  • Added Redis to the list of cache handle implementations.
    Full implementation based on StackExchange.Redis; Using transaction for Update
  • 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