Is there an equivalent to the ActiveMQ "Classic" PooledConnectionFactory
for Artemis? Why is it available in one and not the other?
Spring, for example, offers a generic CachingConnectionFactory
. This is great, but it implements the SingleConnectionFactory
and only "pools" one connection.
It would be key to have a similar mechanism in the Artemis client that actually pooled greater than one connections.
Another thought is that maybe it's not implemented because a single connection supports concurrent sessions! I haven't tested the performance of a using a new connection per session. Is the performance the same or similar?