blob: d93d47cbe63774f243b4051b4e35c6e7997dfb42 [file] [log] [blame]
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08001= gerrit flush-caches
Shawn O. Pearce4016a932009-05-28 15:12:40 -07002
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08003== NAME
Shawn O. Pearce4016a932009-05-28 15:12:40 -07004gerrit flush-caches - Flush some/all server caches from memory
5
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -08006== SYNOPSIS
Yuxuan 'fishy' Wangd85b6872013-11-15 11:47:46 -08007--
Shawn O. Pearce47769242011-06-14 16:40:48 -07008'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' Wangd85b6872013-11-15 11:47:46 -080011--
Shawn O. Pearce4016a932009-05-28 15:12:40 -070012
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -080013== DESCRIPTION
Shawn O. Pearce4016a932009-05-28 15:12:40 -070014Clear an in-memory cache, forcing Gerrit to reconsult the ground
15truth when it needs the information again.
16
17Flushing a cache may be necessary if an administrator modifies
18database records directly in the database, rather than going through
19the Gerrit web interface.
20
21If no options are supplied, defaults to `--all`.
22
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -080023== ACCESS
Shawn O. Pearce7f485142011-06-16 13:49:42 -070024Caller must be a member of the privileged 'Administrators' group,
Fredrik Luthander74ad0d02012-03-13 13:06:30 +010025or in a group that have been granted
26link:access-control.html#capability_flushCaches[the 'Flush Caches' global capability].
Shawn O. Pearce4016a932009-05-28 15:12:40 -070027
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -080028== SCRIPTING
Shawn O. Pearce4016a932009-05-28 15:12:40 -070029This command is intended to be used in scripts.
30
Yuxuan 'fishy' Wang61698b12013-12-20 12:55:51 -080031== OPTIONS
Shawn O. Pearce47769242011-06-14 16:40:48 -070032--all::
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070033 Flush all known caches. This is like applying a big hammer,
34 it will force everything out, potentially more than was
Shawn O. Pearce47769242011-06-14 16:40:48 -070035 necessary for the change made. This option automatically
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070036 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. Pearce47769242011-06-14 16:40:48 -070039 `--cache web_sessions`.
Shawn O. Pearce4016a932009-05-28 15:12:40 -070040
Shawn O. Pearce47769242011-06-14 16:40:48 -070041--list::
Shawn O. Pearce4016a932009-05-28 15:12:40 -070042 Show a list of the caches.
43
Shawn O. Pearce47769242011-06-14 16:40:48 -070044--cache <NAME>::
Shawn O. Pearce4016a932009-05-28 15:12:40 -070045 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' Wang61698b12013-12-20 12:55:51 -080049== EXAMPLES
Shawn O. Pearce4016a932009-05-28 15:12:40 -070050List caches available for flushing:
51
52====
53 $ ssh -p 29418 review.example.com gerrit flush-caches --list
54 accounts
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070055 accounts_byemail
Shawn O. Pearce4016a932009-05-28 15:12:40 -070056 diff
57 groups
Shawn O. Pearce302a7dd2009-08-18 19:33:15 -070058 ldap_groups
Shawn O. Pearce4016a932009-05-28 15:12:40 -070059 openid
60 projects
61 sshkeys
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070062 web_sessions
Shawn O. Pearce4016a932009-05-28 15:12:40 -070063====
64
65Flush 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
71or
72
73====
74 $ ssh -p 29418 review.example.com gerrit flush-caches
75====
76
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070077Flush only the "sshkeys" cache, after manually editing an SSH key
78for a user:
Shawn O. Pearce4016a932009-05-28 15:12:40 -070079
80====
81 $ ssh -p 29418 review.example.com gerrit flush-caches --cache sshkeys
82====
83
Shawn O. Pearce388dd8f2009-08-17 07:37:03 -070084Flush "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' Wang61698b12013-12-20 12:55:51 -080090== SEE ALSO
Shawn O. Pearce4016a932009-05-28 15:12:40 -070091
92* link:cmd-show-caches.html[gerrit show-caches]
Shawn O. Pearce8efb2a72009-08-18 19:45:33 -070093* link:config-gerrit.html#cache[Cache Configuration]
Shawn O. Pearce4016a932009-05-28 15:12:40 -070094* link:config-gerrit.html#cache_names[Standard Caches]
Shawn O. Pearce5500e692009-05-28 15:55:01 -070095
96GERRIT
97------
98Part of link:index.html[Gerrit Code Review]
Yuxuan 'fishy' Wang99cb68d2013-10-31 17:26:00 -070099
100SEARCHBOX
101---------