我想知道如何将缓存配置添加到Vertx http网络客户端。
使用Apache http客户端,我可以轻松设置setCacheConfig
PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager();
connectionManager.setMaxTotal(configuration.getMaxTotalConnections());
connectionManager.setDefaultMaxPerRoute(configuration.getDefaultMaxConnectionsPerRoute());
HttpHost httpHost = new HttpHost(configuration.getHost(), configuration.getPort());
connectionManager.setMaxPerRoute(new HttpRoute(httpHost), configuration.getMaxConnectionsPerRoute());
CacheConfig cacheConfig = CacheConfig.custom()
.setMaxCacheEntries(configuration.getMaxCacheEntries())
.setMaxObjectSize(configuration.getMaxCacheObjectSize())
.build();
RequestConfig requestConfig = RequestConfig.custom()
.setConnectTimeout(configuration.getRequestConnectTimeout())
.setSocketTimeout(configuration.getRequestSocketTimeout())
.build();
httpClient = CachingHttpClients.custom()
.setCacheConfig(cacheConfig)
.setDefaultRequestConfig(requestConfig)
.setConnectionManager(connectionManager)
.build();
有什么想法吗?