From 100d71f9fc25a3a3144f4dbd2b94359dd9f1e764 Mon Sep 17 00:00:00 2001 From: Jason McGhee <mcghee.j@gmail.com> Date: Fri, 13 Jul 2018 14:25:50 -0700 Subject: [PATCH] Updated README call to setPacCacheSettings This was done to reflect the default ttl and comment above the demonstrated call. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c03a9b0..167ca35 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ When a cached URL is accessed the Javascript execution will be skipped and the c ProxySearch proxySearch = ProxySearch.getDefaultProxySearch(); // Cache 20 hosts for up to 10 minutes. This is the default. -proxySearch.setPacCacheSettings(20, 1000*60*5, CacheScope.CACHE_SCOPE_HOST); +proxySearch.setPacCacheSettings(20, 1000*60*10, CacheScope.CACHE_SCOPE_HOST); ``` ### How to handle proxy authentication