Skip to content

Releases: ethlo/spring-tx-cache-decorator

v1.0.5

19 Jan 11:51
Compare
Choose a tag to compare

Fixes issue #11:
Spring Boot exposes cache metrics via the CacheMetricsRegistrar. This class expects that the decorator is of type TransactionAwareCacheDecorator in order to unwrap the decorated cache. Since the EnhancedTransactionAwareCacheDecorator is not of that type, the underlying cache is not available, and the decorated cache type is not supported by any of the available CacheMeterBinderProvider.

Thanks to @iyerha for raising and fixing!

v1.0.4

12 Sep 10:58
Compare
Choose a tag to compare

Fixes #8 and #10. Thanks for the contribution.

v1.0.3

05 May 05:32
66e2bb1
Compare
Choose a tag to compare

Fixes issue #6

v1.0.2

28 Sep 07:05
Compare
Choose a tag to compare

Bugfix release

v1.0.0

07 Sep 07:49
Compare
Choose a tag to compare
  • First API stable release.
  • Add support for caching the cached result - A benefit of knowing the transaction boundaries is that we can support caching of a value coming from the delegate cache, as it may be remote and impose roundtrip and deserialization costs compared to a simple Hashmap lookup. This will of course only be beneficial if the same value is accessed more than once inside the same transaction. This can be enabled by setting cacheCacheResult to true.

v0.2

04 Aug 13:05
Compare
Choose a tag to compare
v0.2 Pre-release
Pre-release

First release