let pipeline = [{ $lookup: { from: "user_person", localField: "cardnumber", foreignField: "cardnumber", as: "right_person" } }, {"$unwind":"$right_per ...
分类:
数据库 时间:
2017-10-11 12:49:12
阅读次数:
317
Django概述 django是一个用python语言写的web框架。进而快速的开发web应用程序。 可以去github上找到docs/intro/install.txt文件阅读,来安装Django。 Django在ubantu的安装与配置 1.虚拟环境的必要性 如果开发者进行开发需要多种库。有时随 ...
分类:
其他好文 时间:
2017-10-10 22:00:11
阅读次数:
152
不管是YGC还是Full GC,GC过程中都会对导致程序运行中中断,正确的选择不同的GC策略,调整JVM、GC的参数,可以极大的减少由于GC工作,而导致的程序运行中断方面的问题,进而适当的提高Java程序的工作效率。但是调整GC是以个极为复杂的过程,由于各个程序具备不同的特点,如:web和GUI程序 ...
分类:
其他好文 时间:
2017-10-10 14:43:20
阅读次数:
179
注:本文来源:sdyy321的《mockito简单教程》官网: http://mockito.orgAPI文档:http://docs.mockito.googlecode.com/hg/org/mockito/Mockito.html项目源码:https://github.com/mockito/... ...
分类:
其他好文 时间:
2017-10-10 14:35:38
阅读次数:
182
More detail check LInk. Render Prop vs HOC: HOC version for withMouse: Problems: Indirection. We still have the same problem with indirection that we ...
分类:
其他好文 时间:
2017-10-10 01:20:59
阅读次数:
241
块的顶部外边距和底部外边距有时被组合(折叠)为单个外边距,其大小是组合到其中的最大外边距, 这种行为称为外边距塌陷(margin collapsing),有的地方翻译为外边距合并。 1.相邻的兄弟姐妹元素 可以发现这两个段落中间的距离,不是 ”上面段落的下边距“ 与 ”下面段落的上边距“ 的 求和 ...
分类:
其他好文 时间:
2017-10-09 20:54:16
阅读次数:
136
hexo安装 1 2 3 npm install hexo -g #安装 npm update hexo -g #升级 hexo init #初始化 简写 1 2 3 4 5 hexo n "我的博客" == hexo new "我的博客" #新建文章 hexo p == hexo publish ...
分类:
其他好文 时间:
2017-10-09 16:45:21
阅读次数:
136
此为官方介绍Overview of OpenFaaSFunction WatchdogYou can make any Docker image into a serverless function by adding the Function Watchdog (a tiny Golang HTT... ...
分类:
其他好文 时间:
2017-10-08 13:01:13
阅读次数:
317
1. json模块介绍 json是python自带的操作json的模块。 python序列化为json时的数据类型转换关系: python格式 json格式 dict(复合类型) object list, tuple(集合类型) array int, long, float(数值类型) number... ...
分类:
编程语言 时间:
2017-10-06 10:35:20
阅读次数:
210
1. 简单介绍 所谓 hot functions 实际上就是长时间运行的functions ,简单理解类似后台任务 所谓 hot functions 实际上就是长时间运行的functions ,简单理解类似后台任务 所谓 hot functions 实际上就是长时间运行的functions ,简单理 ...
分类:
其他好文 时间:
2017-10-05 18:27:38
阅读次数:
159