码迷,mamicode.com
首页 >  
搜索关键字:consistent    ( 241个结果
详解分布式BASE定理
原文链接:详解分布式BASE定理_盛难晨-CSDN博客_base定理 什么是分布式BASE定理? BASE是Basically Available(基本可用)、Soft state(软状态)和Eventually consistent(最终一致性)三个短语的缩写。BASE理论是eBay架构师提出的。 ...
分类:其他好文   时间:2021-06-07 20:24:34    阅读次数:0
事务的ACID是指什么?
事务的ACID是指什么? 原子性(Atomic):事务中各项操作,要么全做要么全不做,任何一项操作的失败都会导致整个事务的失败; 一致性(Consistent):事务结束后系统状态是一致的; 隔离性(lsolated):并发执行的事务彼此无法看到对方的中间状态; 持久性(Durable):事务完成后 ...
分类:其他好文   时间:2021-01-22 12:06:00    阅读次数:0
当年,我的架构师之路差点完蛋,幸亏了它
这次和大家讲讲分布式事务的 BASE 理论,保证通俗易懂。为了阅读顺畅,开始之前先请大家记住几个名词: BASE——Basically Available(基本可用),Soft state(软状态),Eventually consistent(最终一致性) 2PC——两阶段提交 不用懂,先记住就好了 ...
分类:其他好文   时间:2021-01-07 11:44:51    阅读次数:0
循环神经网络层
目录RecapSentiment AnalysisProposalS1.Weight sharingNaive versionWeight shareS2.Consistent memoryUnfolded modelFormulationOverall DiagramOne more thingH ...
分类:其他好文   时间:2020-12-17 12:25:55    阅读次数:2
Learning the "PEP 8 -- Style Guide for Python Code" - part 1
PEP 8 -- Style Guide for Python Code Tabs or Spaces? Spaces are the preferred indentation method. Tabs should be used solely to remain consistent with ...
分类:编程语言   时间:2020-11-17 13:01:45    阅读次数:27
[leetcode] 股票问题
参考文章: [1] 团灭 LeetCode 股票买卖问题 [2] Most consistent ways of dealing with the series of stock problems 其实文章 [1] 是文章 [2] 的「二次创作」,建议先阅读 [2] 后再阅读 [1] 。文章 [2] ...
分类:其他好文   时间:2020-06-06 21:39:10    阅读次数:83
nginx TCP 代理& windows傻瓜式安装
要放在http之前 #tcp_proxy stream { upstream tcp_proxy{ hash $remote_addr consistent; server 192.168.8.56:4809; #需代理的IP+PORT } server { listen 4111; proxy_c ...
分类:Windows程序   时间:2020-06-05 21:22:13    阅读次数:89
nginx四层代理
Nginx 四层代理理仅能存在于 main 段,以下是代理的配置 stream { upstream ssh_proxy { hash $remote_addr consistent; server 192.168.1.10:22; #实际的服务器IP及端口 } upstream mysql_pro ...
分类:其他好文   时间:2020-05-28 23:13:04    阅读次数:88
数据库事务知识点总结
事务分为三个主要知识点,分别是基本属性,并发事务处理带来的问题,以及事务的隔离级别。 一、事务的基本属性 1. 原子性(Atomicity) 事务是一个原子操作单元,其对数据的修改,要么全都执行,要么全不执行 2. 一致性(Consistent) 在事务开始和完成时,数据都必须保持一致状态,这意味着 ...
分类:数据库   时间:2020-05-10 13:11:48    阅读次数:66
背单词
paradox crucial flaw Plague accommodate cruelty transitive consistent dropout imitate tumor consequence explicitly sway imaginary contaminate soar sol ...
分类:其他好文   时间:2020-05-02 16:31:59    阅读次数:48
241条   1 2 3 4 ... 25 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!