#ifdef WIN32 #include<windows.h> #else #include<string.h> #include<unistd.h> #include<stdlib.h> #include<arpa/inet.h> #include<sys/types.h> #include<s ...
分类:
其他好文 时间:
2020-07-29 15:24:55
阅读次数:
63
一、模型关联 1.一对多/多对多 在一中关联多中的字段,type为 mongoose.Schema.Types.ObjectId ,并关联关联模型的名称。 1 const Categoryschema = new mongoose.Schema({ 2 name: { type: String }, ...
分类:
数据库 时间:
2020-07-29 10:13:51
阅读次数:
71
[root@centos7 nginx]# cat nginx.conf worker_processes 2; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type applic ...
分类:
其他好文 时间:
2020-07-26 01:19:27
阅读次数:
70
月初的时候,Flink 终于发布 1.11.0 版本, CDC 的功能还是比较期待的(虽然比预期差很多) 当然是升级一波了 最新的代码已经上传到 GitHub : https://github.com/springMoon/sqlSubmit 跑 sqlSubmit 的代码,随便来个 kafka t ...
分类:
数据库 时间:
2020-07-26 00:01:52
阅读次数:
179
nginx配置负载均衡需要有两个关键配置 在upstream中配置具体负载均衡信息 通过proxy_pass 来引用已经配置好的负载均衡信息 在http{}部分引入mylb.conf文件 http { include /etc/nginx/mime.types; default_type appli ...
分类:
Web程序 时间:
2020-07-24 16:28:51
阅读次数:
85
1、添加 try_files $uri $uri/ /index.html; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/oct ...
分类:
其他好文 时间:
2020-07-24 16:14:03
阅读次数:
176
最近由于项目需要,我需要做一个统计的脚本,脚本完成后最终会生成一个统计的excel文件, 为了让使用的人不用安装python环境就可以使用这个统计工具(使用的人几乎没有代码能力),需要将我的脚本打包成.exe可执行文件,只要点一下就可以完成统计并自动生成报表。 废话不多说,开整 一、准备工作pyth ...
分类:
编程语言 时间:
2020-07-24 16:01:59
阅读次数:
77
如何通过npm编译Typescript代码, 将ts文件编译成js文件 ...
分类:
其他好文 时间:
2020-07-21 23:23:55
阅读次数:
107
【原题】 Note that the memory limit is unusual. You are given a multiset consisting of nn integers. You have to process queries of two types: add integer ...
分类:
其他好文 时间:
2020-07-21 21:33:29
阅读次数:
83
一、前言 最近学习廖雪峰官网的python,学习后,简单总结下 当我们定义一个class,创建一个class的实例后,就可以给实例绑定方法和属性。这是动态语言的灵活性。 class Student(object): pass #这是给实例绑定属性 >>s=Student() >>s.name="Ba ...
分类:
编程语言 时间:
2020-07-21 14:00:23
阅读次数:
59