aftershadow
aftershadow
It is not ready for production use, and is still doing comparative testing and verification. Considering that Rx2.x has entered maintenance mode, this means that there may be conflicts in...
Yes, you are right. Thanks
MetricRegistry metricRegistry = new MetricRegistry(); HealthCheckRegistry healthCheckRegistry = new HealthCheckRegistry(); install(new RedisModule("foo").withComputationThreadPoolSize(4).withIOThreadPoolSize(4).metricRegistry(Duration.ofSeconds(10),metricRegistry)); install(new RedisModule("bar").metricRegistry(Duration.ofSeconds(10),metricRegistry)); install(new HikariModule() .metricRegistry(metricRegistry) .healthCheckRegistry(healthCheckRegistry)); install(new MetricsModule(metricRegistry,healthCheckRegistry) .threadDump() .ping() );