Expected behaviour
Documentation of $async should be in readme, since this functionality was implemented in #1302
Actual behaviour
https://github.com/phpredis/phpredis#flushall has incomplete documentation
Parameters
None.
/* {{{ proto bool Redis::flushDB([bool async]) */
PHP_METHOD(Redis, flushDB)
{
REDIS_PROCESS_KW_CMD("FLUSHDB", redis_flush_cmd, redis_boolean_response);
}
/* }}} */
/* {{{ proto bool Redis::flushAll([bool async]) */
PHP_METHOD(Redis, flushAll)
{
REDIS_PROCESS_KW_CMD("FLUSHALL", redis_flush_cmd, redis_boolean_response);
}
/* }}} */
Expected behaviour
Documentation of $async should be in readme, since this functionality was implemented in #1302
Actual behaviour
https://github.com/phpredis/phpredis#flushall has incomplete documentation