cmsInitByProb method
CMS.INITBYPROB key error probability Initializes a Count-Min Sketch to accommodate requested error and probability.
Implementation
Future<dynamic> cmsInitByProb(
String key,
double error,
double probability, {
bool forceRun = false,
}) async {
await checkValkeySupport('CMS.INITBYPROB', forceRun: forceRun);
return execute(['CMS.INITBYPROB', key, error, probability]);
}