diff options
Diffstat (limited to '')
-rw-r--r-- | src/commands/bgrewriteaof.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/commands/bgrewriteaof.json b/src/commands/bgrewriteaof.json new file mode 100644 index 0000000..27d64dd --- /dev/null +++ b/src/commands/bgrewriteaof.json @@ -0,0 +1,15 @@ +{ + "BGREWRITEAOF": { + "summary": "Asynchronously rewrite the append-only file", + "complexity": "O(1)", + "group": "server", + "since": "1.0.0", + "arity": 1, + "function": "bgrewriteaofCommand", + "command_flags": [ + "NO_ASYNC_LOADING", + "ADMIN", + "NOSCRIPT" + ] + } +} |