import socket import multiprocessing import re # import dynamic.mini_frame import sys # 通过sys.argv在cmd命令行给实例对象传参 class WSGIServer(): def __init__(self ...
分类:
Web程序 时间:
2020-03-31 01:12:54
阅读次数:
111
服务方法 1 [AllowAnonymousAttribute] 2 [HttpPost] 3 public string PostWebName(dynamic login) 4 { 5 Dictionary<string, string> dict = new Dictionary<string ...
整体架构优化点: 根据不同业务需求进行日期分区, 并执行类型动态分区。 hive.exec.dynamic.partition=true 为了减少磁盘存储空间以及I/O次数, 对数据进行压缩(Gzip) mapreduce.output.fileoutputformat.compress=true ...
分类:
其他好文 时间:
2020-03-29 19:55:40
阅读次数:
105
-- 建表 DROP TABLE IF EXISTS `table1`;CREATE TABLE `table1` ( `id` int(11) NULL DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_ ...
分类:
其他好文 时间:
2020-03-29 19:52:37
阅读次数:
99
InnoDB Notes Incompatible Change: The InnoDB storage engine can no longer be disabled. The --skip-innodb option is deprecated and has no effect, and i ...
分类:
数据库 时间:
2020-03-27 21:26:41
阅读次数:
97
UPDATE EmailServerProfile SET IncomingPassword=null UPDATE EmailServerProfile SET OutgoingPassword=null UPDATE Mailbox SET Password=null UPDATE Queue ...
分类:
其他好文 时间:
2020-03-27 17:14:48
阅读次数:
127
旧式的类型转换中有俩种(Effect C++) //C风格 (T)expression(int)a//比如这样子 //函数风格 T(expression)doSomeWork(Widget(15)) 这里15作为一个参数给类Widget,会以转型动作创建一个Widget 而C++提供了四种新式转换。 ...
分类:
编程语言 时间:
2020-03-25 14:56:27
阅读次数:
82
本文参考原文 http://bjbsair.com/2020 03 22/tech info/2813/ njmon ========= njmon = nmon + JSON format + real time push to a stats database + instant graphin ...
分类:
其他好文 时间:
2020-03-24 23:00:37
阅读次数:
123
java.lang.ClassNotFoundException: org.apache.http.util.Args
httpclient版本冲突,maven工程中传递依赖导致的版本冲突
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.12</version>
</dependency>
分类:
Web程序 时间:
2020-03-23 16:56:17
阅读次数:
102
1. Two-dimensional Wiener Process dS1 = r·S1·dt + σ1·S1·dW1 ; and dS2 = r·S2·dt + σ2·S2·dW2 Solutions: St = S0·exp[(r - σ2 /2 )·t + σ·Wt] 1.1 No Corre ...
分类:
其他好文 时间:
2020-03-20 09:12:58
阅读次数:
55