-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
Can not update cache with the same key #46
Comments
Please upload an example application that reproduces the issue. Also what version? |
The problem is that in version 4.0.0 of cache plugin the actual key in cache is
|
@112921482 and @verglor : you could check if your problem is solved with the manual key comparison in my merge request #51 |
@112921482 and @verglor the merge request #51 is merged into master with 13f8b05 so you could try if this solves your problem. |
@Cacheable(value="token",key = { 1000 })
def getToken(){
this.updateToken()
}
@CachePut(value="token",key = {1000})
def updateToken(){
// some code get a result
*******
// some code get a result
return result;
}
"getToken" can not get the same after I run updateToken
The text was updated successfully, but these errors were encountered: