Search code examples
linuxbashcachingcurlmemcached

How to call cURL without using server-side cache?


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.


Solution

  • 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.