What would you suggest for Mosquitto connection pooling in Java? We are wasting (blocking) too much time on establishing each connection, so we think some kind of reuse would be better.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I'd suggest using the generic object pooling in the Apache commons tools https://commons.apache.org/proper/commons-pool/
But also you could extend Thread to instantiate a MQTT connection object on creation and have a persistent connection per thread. This could be combined with the built in thread pool in the standard class libraries.
I assume you do have a fixed number of threads (or a suitably constrained thread pool as burning though threads will kill performance as well)