public static void clearDnsCache()

in library/src/main/java/com/alibaba/dcm/DnsCacheManipulator.java [273:283]


    public static void clearDnsCache() {
        try {
            if (isNewInetAddressImpl()) {
                InetAddressCacheUtilForNew.clearInetAddressCache();
            } else {
                InetAddressCacheUtilForOld.clearInetAddressCache();
            }
        } catch (Exception e) {
            throw new DnsCacheManipulatorException("Fail to clearDnsCache, cause: " + e, e);
        }
    }