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
Looks like the provided caching capabilities (including stats) are just an overhead for such an internal logic of the Framework.
A simple LinkedHashMap with plain eviction policy is fully enough to achieve a functionality of the StoredProcExecutor component.
And that is used already by default.
The text was updated successfully, but these errors were encountered:
Fixesspring-projects#2753
* Remove Guava dependency and its minor functionality from the
`StoredProcExecutor`
* Remove `@ManagedResource` and its operations/attributes from
`StoredProcExecutor` since they are not relevant any more
* Remove tests related to JMX and Guava
* Refactor all other tests in the affected classes
* Some code polishing in the `StoredProcExecutor`
Fixes#2753
* Remove Guava dependency and its minor functionality from the
`StoredProcExecutor`
* Remove `@ManagedResource` and its operations/attributes from
`StoredProcExecutor` since they are not relevant any more
* Remove tests related to JMX and Guava
* Refactor all other tests in the affected classes
* Some code polishing in the `StoredProcExecutor`
Looks like the provided caching capabilities (including stats) are just an overhead for such an internal logic of the Framework.
A simple
LinkedHashMap
with plain eviction policy is fully enough to achieve a functionality of theStoredProcExecutor
component.And that is used already by default.
The text was updated successfully, but these errors were encountered: