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
Most things in Bootique are modular, meaning multiple modules can participate in assembly of the final "service". JCache should not be any different. We should allow multiple modules to define their own cache configurations, that should all be presented as a single merged config to the end user.
I can see two possible directions for solving this issue:
Bootique may provide an uber CacheManager that internally routes between a map of CacheManagers by cache name.
Bootique may learn how to merge provider-specific configuration resources into a single config file that is passed to the single cache manager. E.g. EhCache XML structure should allow us to combine multiple <cache> elements together.
The text was updated successfully, but these errors were encountered:
andrus
changed the title
Modular cache configs (EhCache only?)
Modular cache configs
Feb 21, 2017
Most things in Bootique are modular, meaning multiple modules can participate in assembly of the final "service". JCache should not be any different. We should allow multiple modules to define their own cache configurations, that should all be presented as a single merged config to the end user.
I can see two possible directions for solving this issue:
Bootique may provide an uber CacheManager that internally routes between a map of CacheManagers by cache name.
Bootique may learn how to merge provider-specific configuration resources into a single config file that is passed to the single cache manager. E.g. EhCache XML structure should allow us to combine multiple
<cache>
elements together.The text was updated successfully, but these errors were encountered: