From 59ecb4911613f7b69d52c460b39099a3a673211f Mon Sep 17 00:00:00 2001 From: Lior Kogan Date: Mon, 14 Oct 2024 11:55:19 +0300 Subject: [PATCH 1/3] FLUSH commands and functions --- content/commands/flushall/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/content/commands/flushall/index.md b/content/commands/flushall/index.md index fe10a95fbe..003a55905c 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 commands 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. From 40362178740e15c98996e0ce2e1794b9f5fa4b3e Mon Sep 17 00:00:00 2001 From: Lior Kogan Date: Mon, 14 Oct 2024 11:57:05 +0300 Subject: [PATCH 2/3] Update index.md --- content/commands/flushdb/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/content/commands/flushdb/index.md b/content/commands/flushdb/index.md index b87dd3fd79..017d726c7f 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 commands 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. From 9ba3350b0f44c76b2460f37eb25feeaabcf4aba4 Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Tue, 15 Oct 2024 08:05:18 -0700 Subject: [PATCH 3/3] Apply suggestions from code review --- content/commands/flushall/index.md | 2 +- content/commands/flushdb/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/commands/flushall/index.md b/content/commands/flushall/index.md index 003a55905c..e134d20363 100644 --- a/content/commands/flushall/index.md +++ b/content/commands/flushall/index.md @@ -65,7 +65,7 @@ It is possible to use one of the following modifiers to dictate the flushing mod ## 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 commands does not delete functions +* This command does not delete functions. ## Behavior change history diff --git a/content/commands/flushdb/index.md b/content/commands/flushdb/index.md index 017d726c7f..6ca651c7a0 100644 --- a/content/commands/flushdb/index.md +++ b/content/commands/flushdb/index.md @@ -65,7 +65,7 @@ It is possible to use one of the following modifiers to dictate the flushing mod ## 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 commands does not delete functions +* This command does not delete functions. ## Behavior change history