You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
array types require that values are specified using a java array
QueryKey used by hibernate's query cache simply wraps the values inside a Map
and most cache simply delegates to the Map's equals/hashCode
Then the query cache is not able to detect that two same queries with the same parameters involving some array type from this library are actually equal and so the cache is never exploited.
To Reproduce
Not sure how to reproduce it but I think the definition above is enough so that you can tell me if my understanding is correct.
If it is, with your guidance, I can try to make a PR to fix it :)
The text was updated successfully, but these errors were encountered:
Describe the bug
Because
QueryKey
used by hibernate's query cache simply wraps the values inside a MapThen the query cache is not able to detect that two same queries with the same parameters involving some array type from this library are actually equal and so the cache is never exploited.
To Reproduce
Not sure how to reproduce it but I think the definition above is enough so that you can tell me if my understanding is correct.
If it is, with your guidance, I can try to make a PR to fix it :)
The text was updated successfully, but these errors were encountered: