HttpClient - Cache

Estou usando o HttpClient para fazer uma requisição

...
HttpClient client = new HttpClient();
PostMethod postMethod = new PostMethod(url);
int statusCode = client.executeMethod(postMethod);
...

entretanto esta utilizando o cache e devido a uma restrição no serve que estou me conectando, tenho que eliminar essa utilização do cache.
alguem sabe como fazer ?