我有一个Play应用程序可以创建一些WSClient
,因为我必须限制每个{1}的最大连接数(因为它们用于不同的目的和限制是不同的),并且没有全局设置此功能。我在日志中得到这个:
ResourceLeakDetector - LEAK: You are creating too many HashedWheelTimer instances. HashedWheelTimer is a shared resource that must be reused across the JVM,so that only a few instances are created.
我试图为此找到解决方案,但遗憾的是我不知道如何在客户端之间共享HashedWheelTimer
个实例。