We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The MemcachedCache class which represents a region doesn't read the region specific configuration.
MemcachedCache
For example, if you configure (yaml syntax):
hibernate: cache: memcached: operationTimeout: 700 #700ms # Specific per region com.bla.product.ClassName.cacheTimeSeconds: 300 # 5min
Then operationTimeout will be applied as intended but the cacheTimeSeconds for the "com.bla.product.ClassName" region is not applied.
The text was updated successfully, but these errors were encountered:
Thank you for the bug report. I'll look into it as soon as I get some time.
Sorry, something went wrong.
Fix issue #1
9c94cb5
- Fix for https://github.com/mihaicostin/hibernate-l2-memcached/issues/ : take into account the region specific cache cacheTimeSeconds setting. - Move all tests to java (from groovy) and add some new tests for Issue #1
Merge pull request #2 from mihaicostin/issue_1
ec2068c
Release version 1.1.0
1ae0ce5
Fix - #1
hibernate.memcached.com.bla.product.ClassName.cacheTimeSeconds = 300 will now be taken into account.
mihaicostin
No branches or pull requests
The
MemcachedCache
class which represents a region doesn't read the region specific configuration.For example, if you configure (yaml syntax):
Then operationTimeout will be applied as intended but the cacheTimeSeconds for the "com.bla.product.ClassName" region is not applied.
The text was updated successfully, but these errors were encountered: