You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by "Leif Hedstrom (JIRA)" <ji...@apache.org> on 2016/04/30 02:11:12 UTC

[jira] [Created] (TS-4395) conf_purge: Simple plugin to purge an entire remap rule

Leif Hedstrom created TS-4395:
---------------------------------

             Summary: conf_purge: Simple plugin to purge an entire remap rule
                 Key: TS-4395
                 URL: https://issues.apache.org/jira/browse/TS-4395
             Project: Traffic Server
          Issue Type: New Feature
          Components: Plugins
            Reporter: Leif Hedstrom


This is similar to the existing plugin to purge based on a genID stored in a persistent storage. The difference is that the purging is done exclusively via a restful API, and has little (no) overhead on performance (since the generation ID is always in memory).

Example:
{code}
map http://example.com/p1  http://p1.example.com
    @plugin=remap_purge.so @pparam=--path=__secret_purge__  @pparam=--state=example_p1
{code}

And to purge:

{code}
$ curl -s -D - -X PURGE http://example.com/p1/__secret_purge__
HTTP/1.1 200 OK
Date: Sat, 30 Apr 2016 00:09:34 GMT
Connection: close
Server: ATS/7.0.0
Content-Length: 39
Content-Type: text/html

PURGED http://example.com/p1
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)