publicTypedRedisValueUnknownSubcommandOrArgumentCount()=>TypedRedisValue.Error($"ERR Unknown subcommand or wrong number of arguments for '{ToString()}'.");
publicTypedRedisValueUnknownSubcommandOrArgumentCount()=>TypedRedisValue.Error($"ERR Unknown subcommand or wrong number of arguments for '{ToString()}'.");
=>newRedisCommandException($"This operation would involve too many arguments ({(argCount+1)} vs the redis limit of {PhysicalConnection.REDIS_MAX_ARGS}): {command}");
=>newRedisCommandException($"This operation would involve too many arguments ({argCount+1} vs the redis limit of {PhysicalConnection.REDIS_MAX_ARGS}): {command}");
internalconstintREDIS_MAX_ARGS=1024*1024;// there is a <= 1024*1024 max constraint inside redis itself: https://github.com/antirez/redis/blob/6c60526db91e23fb2d666fc52facc9a11780a2a3/src/networking.c#L1024
internalconstintREDIS_MAX_ARGS=1024*1024;// there is a <= 1024*1024 max constraint inside redis itself: https://github.com/antirez/redis/blob/6c60526db91e23fb2d666fc52facc9a11780a2a3/src/networking.c#L1024