File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ 2016-11-20 VERSION 2.4
2
+ * Fix compatibility with nginx-1.7.12+.
3
+ * explain the purge logic
4
+ * feat(purge all): Include option to purge all the cached files
5
+ This option can be slow if a lot of content is cached, or if the
6
+ storage used for the cache is slow. But you really should be using
7
+ RAM as your cache storage.
8
+ * feat(partial keys): Support partial keys to purge multiple keys.
9
+ Put an '*' at the end of your purge cache URL.
10
+ e.g:
11
+ proxy_cache_key $scheme$host$uri$is_args$args$cookie_JSESSIONID;
12
+ curl -X PURGE https://example.com/pass*
13
+ This will remove every cached page whose key cache starting with:
14
+ httpsexample.com/pass*
15
+ Be careful not passing any value for the values after the $uri, or put
16
+ it at the end of your cache key.
17
+ * Convert a config file to build a dynamic module
18
+
1
19
2014-12-23 VERSION 2.3
2
20
* Fix compatibility with nginx-1.7.9+.
3
21
You can’t perform that action at this time.
0 commit comments