No, don't use those links. They are instructing browsers not to cache pages on visitors' local computers. You may or may not want to do that but it has nothing to do with Google or its cache.
If you want to stop Google caching your pages:
Code:
<meta name="robots" content="noarchive">
If you want to stop Google indexing your pages (you almost never want to do this, but just to prove they are entirely separate):
Code:
<meta name="robots" content="noindex">
What we use in production is this. "noodp" and "noydir" instruct search engines not to replace our on page meta descriptions with content from the Open Directory Project or Yahoo Directories.
Code:
<meta name="robots" content="noarchive, noodp, noydir">