1

我试图清除squid上的缓存,为了做到这一点,我需要执行奇怪的 http 请求。

请求应如下所示:

PURGE www.cached:port/params HTTP/1.1

其中www.cached:port/params代表我想从缓存中删除的值。

所以,这里是有趣的事情——应该打开到 squid 服务器的连接,而不是www.cached:port/params.

因此,整个序列将是:

  1. 打开与 squid 服务器的连接。
  2. 通过PURGE请求。
  3. 读取结果。

我试过apache httpclient。我可以重写请求方法以使其发送PURGE,但库总是打开与它在 http 请求中传递的同一主机的连接(打开连接www.cached,执行 a PURGE www.cached),它对我不起作用。

我可以通过使用纯套接字来做到这一点,但是找到一个可以正常工作的库会很棒。

4

1 回答 1

0

首先,我看不出为什么不能用 Apache HttpClient 来完成。您是否将客户端配置为使用“http.route.default-proxy”参数通过代理执行请求?

无论如何,如果您不介意使用较低的组件,这就是使用 Apache HttpCore(阻塞)可以完成的相同操作

    HttpProcessor httpproc = new ImmutableHttpProcessor(new HttpRequestInterceptor[] {
            new RequestContent(),
            new RequestTargetHost(),
            new RequestConnControl(),
            new RequestUserAgent()});

    HttpRequestExecutor httpexecutor = new HttpRequestExecutor();
    ConnectionReuseStrategy connStrategy = new DefaultConnectionReuseStrategy();

    HttpContext context = new BasicHttpContext();
    HttpHost target = new HttpHost("www.cached", port);
    HttpHost proxy = new HttpHost("squid", 8080);

    HttpParams params = new BasicHttpParams();
    HttpRequest request = new BasicHttpRequest("PURGE", "www.cached:port/params");

    DefaultHttpClientConnection conn = new DefaultHttpClientConnection();
    try {
        if (!conn.isOpen()) {
            Socket socket = new Socket(proxy.getHostName(), proxy.getPort());
            conn.bind(socket, params);
        }
        context.setAttribute(ExecutionContext.HTTP_CONNECTION, conn);
        context.setAttribute(ExecutionContext.HTTP_TARGET_HOST, target);

        httpexecutor.preProcess(request, httpproc, context);
        HttpResponse response = httpexecutor.execute(request, conn, context);
        httpexecutor.postProcess(response, httpproc, context);

        // do something useful with the response

        if (!connStrategy.keepAlive(response, context)) {
            conn.close();
        } else {
            // Connection could be kept alive
        }
    } finally {
        conn.close();
    }
}

我相信其他 HTTP 库也是如此

于 2012-11-15T09:31:28.733 回答