主变调档最大次数限制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了主变调档最大次数限制相关的知识,希望对你有一定的参考价值。
参考技术A _deltaTimes = [NSMutableArray array]; NSInteger deltaMaxTimes = [self.videoModel.deltaMaxTimes integerValue];NSInteger deltaMinTimes = [self.videoModel.deltaMinTimes integerValue];
for (NSInteger i = deltaMaxTimes; i >= deltaMinTimes; i--)
[_deltaTimes addObject:[NSString stringWithFormat:@"%d", (int)i]];
return _deltaTimes;
#pragma mark - 获取视频状态
#pragma mark - <UITableViewDelegate,UITableViewDataSource>
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
return self.titles.count;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
NSArray *dataArray = self.dataArray[section];
return dataArray.count;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
NSArray *dataArray = self.dataArray[indexPath.section];
NSString *text = dataArray[indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
if (!cell)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"UITableViewCell"];
cell.textLabel.text = text;
cell.accessoryType = UITableViewCellAccessoryNone;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if (indexPath.section == 0)
if ([text isEqualToString:self.currentState])
cell.accessoryType = UITableViewCellAccessoryCheckmark;
else if (indexPath.section == 1)
if ([text isEqualToString:[NSString stringWithFormat:@"%d", self.deltaTimesIndex]])
cell.accessoryType = UITableViewCellAccessoryCheckmark;
return cell;
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
return self.titles[section];
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
// 1.取消所有的打钩
[tableView visibleCells];
[tableView.visibleCells enumerateObjectsUsingBlock:^(UITableViewCell * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop)
obj.accessoryType = UITableViewCellAccessoryNone;
];
// 2.打钩当前选中的行
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
NSArray *dataArray = self.dataArray[indexPath.section];
NSString *text = dataArray[indexPath.row];
if (indexPath.section == 0)
// 3.发送状态指令
[self sendStateCommand:text];
else if (indexPath.section == 1)
self.deltaTimesIndex = [text integerValue];
// 4.发送调档指令
[self sendDeltaCommand:self.deltaTimesIndex];
#pragma mark - 按钮点击事件
- (void)backButtonClicked
[self.navigationController popViewControllerAnimated:YES];
#pragma mark - 发送状态指令
- (void)sendStateCommand:(NSString *)state
Nginx限制访问次数和并发数
Nginx限制访问速率和最大并发连接数模块--limit (防止DDOS攻击)
http: ##zone=one或allips 表示设置名为"one"或"allips"的存储区,大小为10兆字节 ##rate=2r/s 允许1秒钟不超过2个请求 limit_conn_log_level error; limit_conn_status 503; limit_conn_zone $binary_remote_addr zone=one:10m; limit_conn_zone $server_name zone=perserver:10m; limit_req_zone $binary_remote_addr zone=allips:100m rate=2r/s; server: ##burst=5 表示最大延迟请求数量不大于5。如果过多的请求被限制延迟是不需要的,这时需要使用nodelay参数,服务器会立刻返回503状态码。 limit_conn one 100; ##表示最大并发连接数100 limit_conn perserver 1000; limit_req zone=allips burst=5 nodelay; 参数解释: $binary_remote_addr限制同一客户端ip地址; $server_name限制同一server最大并发数; limit_conn为限制并发连接数; limit_rate为限制下载速度;
以上是关于主变调档最大次数限制的主要内容,如果未能解决你的问题,请参考以下文章
使用memcache或redis限制某个用户或者某ip用户一段时间内最大投票次数
iOS 13-VNDocumentCameraViewController的最大扫描次数