前言 CAP的理解我也看了很多书籍,也看了不少同行的博文,基本每个人的理解都不一样,而布鲁尔教授得定义又太过的简单,没有具体描述和场景案例分析。因此自己参考部分资料梳理了一篇与大家互相分享一下。 标题写了正确理解,或许某些点不是百分百正确或者有歧义,但是希望与各位分享讨论后达到最终正确, 简介 CA ...
分类:
其他好文 时间:
2018-06-19 16:18:48
阅读次数:
169
The sky is blue, I feel blue, and my life is blue. We haven’t made the deal yet, since we’re still negotiate. The majority of basketball fans support ...
分类:
其他好文 时间:
2018-06-15 20:54:58
阅读次数:
188
在Python中自定义的函数可以有三类不同的参数 formal parameters positional arguments Keyword Arguments When a final formal parameter of the form **name is present, it rece ...
分类:
编程语言 时间:
2018-06-05 18:36:31
阅读次数:
199
fiddler模拟限速的原理(原文地址) 我们可以通过fiddler来模拟限速,因为fiddler本来就是个代理,它提供了客户端请求前和服务器响应前的回调接口,我们可以在这些接口里 面自定义一些逻辑。Fiddler的模拟限速正是在客户端请求前来自定义限速的逻辑,此逻辑是通过延迟发送数据或接收的数据的 ...
分类:
其他好文 时间:
2018-06-04 20:13:04
阅读次数:
172
Reverse Proxy What is Reverse Proxy Server A reverse proxy server is an intermediate connection point positioned at a network’s edge. It receives init ...
分类:
其他好文 时间:
2018-05-17 13:33:55
阅读次数:
375
引子 到目前为止,我们已经学了网络并发编程的2个套路, 多进程,多线程,这哥俩的优势和劣势都非常的明显,我们一起来回顾下 协程 协程,又称微线程,纤程。英文名Coroutine。一句话说明什么是线程:协程是一种用户态的轻量级线程。 协程拥有自己的寄存器上下文和栈。协程调度切换时,将寄存器上下文和栈保 ...
分类:
其他好文 时间:
2018-04-08 15:54:30
阅读次数:
187
YOUTH Samuel Ullman Youth is not a time of life; it is a state of mind; it is not a matter of rosy cheeks, red lips and supple knees; it is a matter o ...
分类:
其他好文 时间:
2018-03-07 13:23:54
阅读次数:
191
铭文一级: 核心概念:StreamingContext def this(sparkContext: SparkContext, batchDuration: Duration) = { this(sparkContext, null, batchDuration)} def this(conf: ...
分类:
其他好文 时间:
2018-01-28 23:16:29
阅读次数:
188
11、'classmethod', 修饰符对应的函数不需要实例化,不需要 self 参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等。 ...
分类:
编程语言 时间:
2018-01-08 18:31:40
阅读次数:
188
看到了一段ESRI写的一个工具,我反编译了一下,学习工具中的几个代码片段 一. IEditTask :Provides access to a task that receives notification when the sketch is complete. The purpose of th ...
分类:
其他好文 时间:
2017-12-25 23:27:35
阅读次数:
425