Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = gerrit flush-caches |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 2 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3 | == NAME |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 4 | gerrit flush-caches - Flush some/all server caches from memory |
| 5 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 6 | == SYNOPSIS |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 7 | -- |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 8 | 'ssh' -p <port> <host> 'gerrit flush-caches' --all |
| 9 | 'ssh' -p <port> <host> 'gerrit flush-caches' --list |
| 10 | 'ssh' -p <port> <host> 'gerrit flush-caches' --cache <NAME> ... |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 11 | -- |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 12 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 13 | == DESCRIPTION |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 14 | Clear an in-memory cache, forcing Gerrit to reconsult the ground |
| 15 | truth when it needs the information again. |
| 16 | |
| 17 | Flushing a cache may be necessary if an administrator modifies |
| 18 | database records directly in the database, rather than going through |
| 19 | the Gerrit web interface. |
| 20 | |
| 21 | If no options are supplied, defaults to `--all`. |
| 22 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 23 | == ACCESS |
Shawn O. Pearce | 7f48514 | 2011-06-16 13:49:42 -0700 | [diff] [blame] | 24 | Caller must be a member of the privileged 'Administrators' group, |
Fredrik Luthander | 74ad0d0 | 2012-03-13 13:06:30 +0100 | [diff] [blame] | 25 | or in a group that have been granted |
| 26 | link:access-control.html#capability_flushCaches[the 'Flush Caches' global capability]. |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 27 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 28 | == SCRIPTING |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 29 | This command is intended to be used in scripts. |
| 30 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 31 | == OPTIONS |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 32 | --all:: |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 33 | Flush all known caches. This is like applying a big hammer, |
| 34 | it will force everything out, potentially more than was |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 35 | necessary for the change made. This option automatically |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 36 | skips flushing potentially dangerous caches such as |
| 37 | "web_sessions". To flush one of these caches, the caller |
| 38 | must specifically name them on the command line, e.g. pass |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 39 | `--cache web_sessions`. |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 40 | |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 41 | --list:: |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 42 | Show a list of the caches. |
| 43 | |
Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 44 | --cache <NAME>:: |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 45 | Flush only the cache called <NAME>. May be supplied more |
| 46 | than once to flush multiple caches in a single command |
| 47 | execution. |
| 48 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 49 | == EXAMPLES |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 50 | List caches available for flushing: |
| 51 | |
| 52 | ==== |
| 53 | $ ssh -p 29418 review.example.com gerrit flush-caches --list |
| 54 | accounts |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 55 | accounts_byemail |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 56 | diff |
| 57 | groups |
Shawn O. Pearce | 302a7dd | 2009-08-18 19:33:15 -0700 | [diff] [blame] | 58 | ldap_groups |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 59 | openid |
| 60 | projects |
| 61 | sshkeys |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 62 | web_sessions |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 63 | ==== |
| 64 | |
| 65 | Flush all caches known to the server, forcing them to recompute: |
| 66 | |
| 67 | ==== |
| 68 | $ ssh -p 29418 review.example.com gerrit flush-caches --all |
| 69 | ==== |
| 70 | |
| 71 | or |
| 72 | |
| 73 | ==== |
| 74 | $ ssh -p 29418 review.example.com gerrit flush-caches |
| 75 | ==== |
| 76 | |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 77 | Flush only the "sshkeys" cache, after manually editing an SSH key |
| 78 | for a user: |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 79 | |
| 80 | ==== |
| 81 | $ ssh -p 29418 review.example.com gerrit flush-caches --cache sshkeys |
| 82 | ==== |
| 83 | |
Shawn O. Pearce | 388dd8f | 2009-08-17 07:37:03 -0700 | [diff] [blame] | 84 | Flush "web_sessions", forcing all users to sign-in again: |
| 85 | |
| 86 | ==== |
| 87 | $ ssh -p 29418 review.example.com gerrit flush-caches --cache web_sessions |
| 88 | ==== |
| 89 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 90 | == SEE ALSO |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 91 | |
| 92 | * link:cmd-show-caches.html[gerrit show-caches] |
Shawn O. Pearce | 8efb2a7 | 2009-08-18 19:45:33 -0700 | [diff] [blame] | 93 | * link:config-gerrit.html#cache[Cache Configuration] |
Shawn O. Pearce | 4016a93 | 2009-05-28 15:12:40 -0700 | [diff] [blame] | 94 | * link:config-gerrit.html#cache_names[Standard Caches] |
Shawn O. Pearce | 5500e69 | 2009-05-28 15:55:01 -0700 | [diff] [blame] | 95 | |
| 96 | GERRIT |
| 97 | ------ |
| 98 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 99 | |
| 100 | SEARCHBOX |
| 101 | --------- |