Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.17.0
-
Component/s: camel-infinispan
-
Labels:None
-
Estimated Complexity:Unknown
Description
As today InfinispanProducer creates an object per event:
@Override
public void process(Exchange exchange) throws Exception {
new InfinispanOperation(
getCache(exchange),
configuration).process(exchange);
}
Which could be reduce by making InfinispanOperation stateless