ShardingTaskExecutorPoolMaxSize 1 Maximum number of outbound connections each TaskExecutor connection pool can open to any given mongod instance. 2 Th ...
分类:
其他好文 时间:
2020-02-29 20:11:47
阅读次数:
80
1.运行db的sqlplus:sqlplus sys/sys as sysdba (sys/sys为“用户名”/“密码”) 或配置client的监听后运行Client的sqlplus 2. (可省略)查看当前服务名:SQL> show parameter service_name 3. 修改服务名: ...
分类:
数据库 时间:
2020-02-28 20:44:58
阅读次数:
422
无锁环形队列 1.Ring_Queue在payload前加入一个头,来表示当前节点的状态 2.当前节点的状态包括可以读、可以写、正在读、正在写 3.当读完成后将节点状态改为可以写,当写完成后将节点状态改为可以读 4.Ring_Queue使用时参照生产者消费者模型,生产者生产(写)一个可用节点,消费者 ...
分类:
编程语言 时间:
2020-02-28 13:52:22
阅读次数:
83
using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks ...
分类:
其他好文 时间:
2020-02-23 19:50:00
阅读次数:
63
1、Request message: Sub-function parameter: 2、Positive response message: 3、Supported negative response codes (NRC_): 4、Example #1:sub-function = startR ...
分类:
其他好文 时间:
2020-02-22 14:14:23
阅读次数:
257
Jenkins 参数集成 1.新建项目 2.添加选项 #!/bin/sh echo "Current deploy environment is $deploy_env" echo "The build is $version" echo "The paasword is $pass" if $bo ...
分类:
其他好文 时间:
2020-02-21 14:31:36
阅读次数:
65
前言 前面两篇文章和读者聊了Spring Boot中最简单的数据持久化方案JdbcTemplate,JdbcTemplate虽然简单,但是用的并不多,因为它没有MyBatis方便,在Spring+SpringMVC中整合MyBatis步骤还是有点复杂的,要配置多个Bean,Spring Boot中对 ...
分类:
编程语言 时间:
2020-02-20 22:08:41
阅读次数:
60
The Promise.any() method accepts an array (or any other iterable) of promises as a parameter. It returns a Promise object that is fulfilled with the v ...
分类:
编程语言 时间:
2020-02-20 20:09:40
阅读次数:
69
The Promise.allSettled() method accepts an array (or any other iterable) of promises as a parameter. It returns a Promise object that is fulfilled wit ...
分类:
编程语言 时间:
2020-02-20 18:45:55
阅读次数:
87
NTLM v2协议 NTLM v1与NTLM v2最显著的区别就是challenge与加密算法不同,共同点就是加密的原料都是NTLM Hash。 不同之处: Challenge:NTLM v1的challenge有8位,NTLM v2的challenge为16位。 Net-NTLM Hash:NTL ...