jsonDebugKeyTableCheck method

Future jsonDebugKeyTableCheck({
  1. bool forceRun = false,
})

JSON.DEBUG KEYTABLE-CHECK

Extended KeyTable integrity check.

⚠️ WARNING: This is a long running command. Do not use on production.

Implementation

Future<dynamic> jsonDebugKeyTableCheck({bool forceRun = false}) async {
  await checkValkeySupportExtended('JSON.DEBUG', 'KEYTABLE-CHECK',
      forceRun: forceRun);

  printDebugWarning();
  final cmd = <String>['JSON.DEBUG', 'KEYTABLE-CHECK'];
  return execute(cmd);
}