install(ubuntu os): sudo apt-get install apache2-utils usage: ab -c 200 -t 100 http://localhost:8001/ explain: -c concurrency -t timelimit ...
分类:
系统相关 时间:
2020-06-25 13:55:31
阅读次数:
54
1.概述 hystrix是一个命令运行的隔离器,命令执行时可以提供容错,隔离和降级功能。 2.命令 命令由HystrixInvokableInfo接口定义 /** * Copyright 2014 Netflix, Inc. * * Licensed under the Apache License ...
分类:
其他好文 时间:
2020-06-25 10:03:00
阅读次数:
50
1. MVE 项目主页 https://www.gcc.tu-darmstadt.de/home/proj/mve/ Github地址 https://github.com/simonfuhrmann/mve #!/bin/bash workspace_path=/root/test_result/ ...
分类:
编程语言 时间:
2020-06-25 09:33:47
阅读次数:
56
Power Strings Time Limit: 3000MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u Submit Status Description Given two strings a and b we define a* ...
分类:
其他好文 时间:
2020-06-24 21:40:19
阅读次数:
63
Selecting Courses Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10627 Accepted: 4803 Description It is well known that it is not easy to ...
分类:
其他好文 时间:
2020-06-24 21:36:57
阅读次数:
72
The Unique MST Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 30194 Accepted: 10809 Description Given a connected undirected graph, tell i ...
分类:
其他好文 时间:
2020-06-24 21:33:23
阅读次数:
67
1)关于Texture2D Crunched压缩格式?2)Unity自身GC和.NET的GC如何协调工作3)关于环境光照球面坐标映射2D贴图UV的某算法的疑问4)iOS审核dlopen、dlsym风险5)Unity 2018.4在iOS上压缩贴图用的是哪个可执行文件 这是第208篇UWA技术知识分享 ...
分类:
其他好文 时间:
2020-06-24 20:04:08
阅读次数:
57
在limit.conf配置文件中添加了如下配置 * soft nproc 65535 * hard nproc 65535 * soft nofile 131070 * hard nofile 131070 另启终端查看最大文件打开数ulimit -n仍然为1024 经过各种百度搜查,发现以前更新过 ...
分类:
其他好文 时间:
2020-06-24 12:05:31
阅读次数:
334
/** * 批量更新xw_kefu的sonIds * @author jack */ function kefu_update_kefuids() { set_time_limit(0); global $db; $sql = "select id,name,p_id,is_lizhi from x ...
分类:
其他好文 时间:
2020-06-24 00:12:14
阅读次数:
72
滑动窗口短信发送限流算法 1.有两条规则 基于IP的限制和基于手机号的限制 IP规则: 1分钟限制5 10分钟限制30 1小时限制50 手机号规则: 1分钟限制1 10分钟限制5 1小时限制10 2.滑动窗口就是随着时间的流动 , 进行动态的删减区间内的数据 , 限制时获取区间内的数据 最主要的是用 ...
分类:
Web程序 时间:
2020-06-23 19:23:27
阅读次数:
97