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
剑指OFFER_机器人的运动范围 题目描述 地上有一个m行和n列的方格。一个机器人从坐标0,0的格子开始移动,每一次只能向左,右,上,下四个方向移动一格,但是不能进入行坐标和列坐标的数位之和大于k的格子。 例如,当k为18时,机器人能够进入方格(35,37),因为3+5+3+7 = 18。但是,它不 ...
分类:
其他好文 时间:
2020-06-24 19:54:17
阅读次数:
41
RibbonFeign Ribbon负载均衡Ribbon是Netflix发布的云中间层服务开源项目,主要功能是提供客户端负载均衡算法。Ribbon客户端组件提供一系列完善的配置项,如,连接超时,重试等。简单的说,Ribbon是一个客户端负载均衡器,我们可以在配置文件中列出load Balancer后 ...
分类:
编程语言 时间:
2020-06-24 13:59:58
阅读次数:
69
题目: 给定一个函数f(x,y)和一个值z,返回所有正整数对x和y,满足f(x,y)== z。f(x,y)为单调递增函数,即:f(x,y)<f(x + 1,y)f(x,y)<f(x,y + 1) Example 1: Input: function_id = 1, z = 5 Output: [[1 ...
分类:
其他好文 时间:
2020-06-23 15:25:02
阅读次数:
47
第二部分 内存管理 6.23 Base and Limit Registers 什么时候确定载入的位置,什么时候确定已经载入到了内存相应的位置 编译时间 加载时间 执行时间 (基本了解) 重点: 逻辑地址空间 物理地址空间 MMU内存管理单元 映射 用户程序只看得到逻辑地址,但它不能看到真的物理地址 ...
分类:
其他好文 时间:
2020-06-23 15:11:48
阅读次数:
63
Lambda expressions were introduced in Java 8 and they became the talk of the town as soon as they arrived. Java has evolved a lot with time. It has in ...
分类:
编程语言 时间:
2020-06-22 19:29:55
阅读次数:
96
Form默认开启 aotuComplete 功能,当submit 时会记录输入历史,取消自动补充功能,只需在Form 上加autoComplete=“off”即可关闭自动提示输入历史 <Form autoComplete = "off"> <Form.Item > {getFieldDecorato ...
分类:
其他好文 时间:
2020-06-22 15:02:49
阅读次数:
226
来自:唐尤华 https://bloggceasy.files.wordpress.com/2015/05/outofmemoryerror2.pdf 1. Java 堆空间 **发生频率:**5颗星 造成原因 无法在 Java 堆中分配对象 吞吐量增加 应用程序无意中保存了对象引用,对象无法被 G ...
分类:
其他好文 时间:
2020-06-22 14:57:42
阅读次数:
75
git基础命令(黏贴shift + insert)拷贝项目:git clone <仓库地址> 创建分支:git branch <name>創建並进入分支:git checkout -b <name>切分支:git checkout <name>查看状态:git status添加所有:git add. ...
分类:
其他好文 时间:
2020-06-21 19:54:25
阅读次数:
72
For 10.3.x and 12.1.1, it is a limitation of the BSU utility to determine the cumulative design of PSUs. Beginning with 12.1.2, the OPatch utility is ...
分类:
其他好文 时间:
2020-06-21 17:41:03
阅读次数:
59