Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-02-11 10:38:56 +0300
committermichael-grunder <michael.grunder@gmail.com>2019-02-12 07:02:06 +0300
commitf90ba7c8e0add275b2308ff05d483d2ae1ba5efb (patch)
tree9a7e17b949494041de66cdc29b1b70bf6cb6cf6f /README.markdown
parentfec7a7f3977f751d7c3e9896be8ac2c64e0629e1 (diff)
Add documentation about async parameter for flushAll/flushDb.
This commit fixes issue #1503.
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index c1d934f7..111461d3 100644
--- a/README.markdown
+++ b/README.markdown
@@ -455,7 +455,7 @@ echo "Redis has $count keys\n";
_**Description**_: Remove all keys from all databases.
##### *Parameters*
-None.
+*async* (bool) requires server version 4.0.0 or greater
##### *Return value*
*BOOL*: Always `TRUE`.
@@ -470,7 +470,7 @@ $redis->flushAll();
_**Description**_: Remove all keys from the current database.
##### *Parameters*
-None.
+*async* (bool) requires server version 4.0.0 or greater
##### *Return value*
*BOOL*: Always `TRUE`.