Curl command without using cache

tokhi picture tokhi · Jul 27, 2015 · Viewed 95.3k times · Source

Is there a way to tell curl command not to use server's side cache? e.g; I have this curl command:

curl -v www.example.com

how can I ask curl to send a fresh request to not use the cache?

Note: I am looking for an executable command in the terminal.

Answer

stoicbaby picture stoicbaby · Mar 16, 2016

I know this is an older question, but I wanted to post an answer for users with the same question:

curl -H 'Cache-Control: no-cache' http://www.example.com

This curl command servers in its header request to return non-cached data from the web server.