Netty概述 Netty由Trustin Lee (韩国,Line公司) 2004年开发。 Netty is an asynchronous event-driven network application framework for rapid development of maintainab ...
分类:
Web程序 时间:
2020-07-05 20:57:10
阅读次数:
114
Table of Contents 术语 功能点 FP function point 基本概念 应用边界 application boundary 控制信息 Control Information 基本处理过程 elementary process Processing Logic 功能 funct... ...
分类:
其他好文 时间:
2020-07-05 15:08:18
阅读次数:
72
Introduction In LTE the Downlink Shared Channel (DL-SCH) is a transport channel used for the transmission of user data, dedicated control and user-spe ...
分类:
其他好文 时间:
2020-07-05 00:30:22
阅读次数:
93
Nginx 的常用的命令 进入 nginx 目录中 cd /usr/local/nginx/sbin 1、查看 nginx 版本号 ./nginx -v 2、启动 nginx ./nginx 3、停止 nginx ./nginx -s stop Nginx 的配置文件 1、nginx 配置文件位置 ...
分类:
其他好文 时间:
2020-07-05 00:20:44
阅读次数:
72
一、报错日志java.lang.IllegalStateException: Async support must be enabled on a servlet and for all filters involved in async request processing. This is do ...
分类:
其他好文 时间:
2020-07-03 17:54:31
阅读次数:
134
OLTP(on-line transaction processing)翻译为联机事务处理, OLAP(On-Line Analytical Processing)翻译为联机分析处理。从字面上来看OLTP是做事务处理,OLAP是做分析处理。从对数据库操作来看,OLTP主要是对数据的增删改,OLAP是... ...
分类:
其他好文 时间:
2020-07-03 17:08:45
阅读次数:
52
document.onkeydown = function (e) { e = window.event || e; var k = e.keyCode; //屏蔽ctrl+R,F5键,ctrl+F5键 F3键!验证 if ((e.ctrlKey == true && k == 82) || (k ...
分类:
Web程序 时间:
2020-07-03 12:40:33
阅读次数:
121
MIMIC-IV MIMIC-IV将MIMIC-III的数据表模块化划分,反应各个模块的数据的独立性和不同本质。包含2008年至2018年(MIMIC-III:2001年至2012年)之间进入重症监护病房的数据,增加了急救中心和胸部x光片数据。 模块化 core - admissions/trans ...
分类:
其他好文 时间:
2020-07-03 12:18:20
阅读次数:
195
1. 事件循环和 Promise https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/EventLoop https://zhuanlan.zhihu.com/p/33058983 const s = new Date().getSecon ...
分类:
其他好文 时间:
2020-07-03 12:07:32
阅读次数:
62
如果现在要想将flume中的sink设置为kafka,因为在实际的开发中,可能会有若干个子系统或者若干个客户端进行flume日志采集,那么能够承受这种采集任务量的只有kafka来完成,可是需要注意一个问题,现在的kafka是采用了Kerberos认证,所以要想在flume之中去使用kafka操作,就 ...
分类:
Web程序 时间:
2020-07-03 01:11:20
阅读次数:
154