1. 下载MongoDB 官网下载地址 https://www.mongodb.com/download-center#community 开始下载 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-4.0.1.tgz ...
分类:
数据库 时间:
2018-08-16 21:02:45
阅读次数:
787
const defaultConfig = { boxName: '#waterfall', itemName: '.waterfall__item', gap: 10, boxLeft: 15 }; module.exports = class Waterfall { constructor(us... ...
分类:
其他好文 时间:
2018-08-14 21:59:43
阅读次数:
139
题目 解析: C++ // 第20节 相邻两数最大差值练习题 // 基于桶排序的思想完成,不考虑两个相同的桶内的差值,只考虑该桶的最小值减去上一个桶的最大值,最大的就是最大值。 class Gap { public: int maxGap(vector A, int n) { // write co ...
分类:
编程语言 时间:
2018-08-10 01:31:14
阅读次数:
164
图论模板——最大流及费用流模板 最大流——SAP 时间复杂度:O(v^2 e) const int MAXN=1010;//点数的最大值 const int MAXM=1010;//边数的最大值 const int INF=0x3f3f3f3f; struct Node { int from,to, ...
分类:
其他好文 时间:
2018-08-09 21:16:58
阅读次数:
122
1、确定增备scn范围,通过alert日志获取gap日志序列GAP - thread 1 sequence 109631-117170 2、根据序列获取增备起点SCN提示最小gap序列为109631, 往前推一个序列,然后获得scn号 select THREAD#,SEQUENCE#,FIRST_C ...
分类:
数据库 时间:
2018-08-08 13:40:31
阅读次数:
263
xml模块是一种文件数据处理格式的方法,常用与生成、解析或修改.xml配置文件 1.常见的.xml配置文件格式如下 2.xml模块的简单使用 3. 用Python创建.xml文件小实例 <?xml version='1.0' encoding='utf-8'?> <Earth> <Country C ...
分类:
其他好文 时间:
2018-08-07 20:40:13
阅读次数:
148
1 namespace ISAP { 2 int tot, n, m, src, tar, qh, qt; 3 ll ans; 4 struct edge { 5 int vet, next, len; 6 } E[LEN * 2]; 7 int dis[LEN], gap[LEN], head[L... ...
分类:
其他好文 时间:
2018-08-03 19:40:51
阅读次数:
266
什么是archive gap Archive Gap就是standby端日志应用的过程中丢失的一段范围的redo.典型的发生在standby端不能接收primary的redo信息或者接收后不能应用这些redo. 一旦出现GAP,则standby端的Log Apply Services将会暂停,直到G ...
分类:
其他好文 时间:
2018-08-02 15:58:57
阅读次数:
176
ACM International Collegiate Programming Contest, JUST Collegiate Programming Contest (2018) B. New Assignment 有n个人(1?≤?n?≤?104),有男有女,每个人都有一个id,现在这n个人 ...
分类:
其他好文 时间:
2018-07-29 18:53:07
阅读次数:
173
项目已上线许久,项目中使用的是log4j 1.x版本,本来日志也可以正常记录,但是运维报怨说,你们的日志太大了,catalina.out日志输出无限大,以致有些应用出现服务器存储告警,所以建议我们: “应用日志必须对接公司统一日志平台,若同时也存放在本地服务器,则统一放在容器根目录下的单独文件夹,文 ...
分类:
编程语言 时间:
2018-07-28 11:49:35
阅读次数:
185