diff --git a/content/commands/flushall/index.md b/content/commands/flushall/index.md index fe10a95fbe..e134d20363 100644 --- a/content/commands/flushall/index.md +++ b/content/commands/flushall/index.md @@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod * `ASYNC`: flushes the databases asynchronously * `SYNC`: flushes the databases synchronously -Note: an asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected. +## Notes + +* An asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected. +* This command does not delete functions. ## Behavior change history -* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive. \ No newline at end of file +* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive. diff --git a/content/commands/flushdb/index.md b/content/commands/flushdb/index.md index b87dd3fd79..6ca651c7a0 100644 --- a/content/commands/flushdb/index.md +++ b/content/commands/flushdb/index.md @@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod * `ASYNC`: flushes the database asynchronously * `SYNC`: flushes the database synchronously -Note: an asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected. +## Notes + +* An asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected. +* This command does not delete functions. ## Behavior change history -* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive. \ No newline at end of file +* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.