You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ml...@apache.org on 2010/01/26 22:49:31 UTC

svn commit: r903436 - /incubator/trafficserver/site/trunk/docs/admin/cache.htm

Author: mlibbey
Date: Tue Jan 26 21:49:31 2010
New Revision: 903436

URL: http://svn.apache.org/viewvc?rev=903436&view=rev
Log:
changed to example.com from examplex.com

Modified:
    incubator/trafficserver/site/trunk/docs/admin/cache.htm

Modified: incubator/trafficserver/site/trunk/docs/admin/cache.htm
URL: http://svn.apache.org/viewvc/incubator/trafficserver/site/trunk/docs/admin/cache.htm?rev=903436&r1=903435&r2=903436&view=diff
==============================================================================
--- incubator/trafficserver/site/trunk/docs/admin/cache.htm (original)
+++ incubator/trafficserver/site/trunk/docs/admin/cache.htm Tue Jan 26 21:49:31 2010
@@ -146,13 +146,13 @@
 
 <h2 id="RemoveObjectFromCache">Removing an Object From the Cache</h2>
 <p>Traffic Server accepts the custom HTTP request method <code>PURGE</code> when removing a specific object from cache. If the object is found in the cache and is successfully removed, then Traffic Server responds with a <code>200 OK </code> HTTP message; otherwise, a <code>404 File Not Found</code> message is returned. </p>
-<p>In the following example, Traffic Server is running on the domain <u><code>examplex.com</code></u> and you want to remove the image <code>remove_me.jpg</code> from cache:</p>
-<p><code>$ curl -X PURGE -v "http://examplex.com/remove_me.jpg"</code></p>
-<p><code>* About to connect() to examplex.com port 80 (#0) <br /> 
+<p>In the following example, Traffic Server is running on the domain <u><code>example.com</code></u> and you want to remove the image <code>remove_me.jpg</code> from cache:</p>
+<p><code>$ curl -X PURGE -v "http://example.com/remove_me.jpg"</code></p>
+<p><code>* About to connect() to example.com port 80 (#0) <br /> 
   * Trying 192.0.32.11... connected <br />
-  * Connected to examplex.com (192.0.32.11) port 80 (#0)</code></p>
+  * Connected to example.com (192.0.32.11) port 80 (#0)</code></p>
 <p><code> &gt; PURGE /remove_me.jpg HTTP/1.1  <br />  &gt; User-Agent: curl/7.19.7   <br /> 
-  &gt; Host: examplex.com   <br /> &gt; Accept: */*  <br />  &gt; <br />  &lt; HTTP/1.1 200 Ok  <br /> 
+  &gt; Host: example.com   <br /> &gt; Accept: */*  <br />  &gt; <br />  &lt; HTTP/1.1 200 Ok  <br /> 
   &lt; Date: Thu, 08 Jan 2010 20:32:07 GMT  <br /> &lt; Connection: keep-alive</code></p>
 <p>The next time Traffic Server receives a request for the removed object, it will contact the origin server to retrieve it (i.e., it has been purged from the Traffic Server cache).</p>
 <p>Note: The procedure above only removes an object from a <i>specific</i> Traffic Server cache. Users may still see the old (removed) content if it was cached by intermediary caches or  by the end-users' web browser.</p>