aftershadow

Results 3 comments of 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...

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() );