上一页 1 ··· 257 258 259 260 261 262 263 264 265 ··· 271 下一页
摘要: C: Consistency 一致性 • A: Availability 可用性(指的是快速获取数据) • P: Tolerance of network Partition 分区容忍性(分布式) 10年前,Eric Brewer教授指出了著名的CAP理论,后来Seth Gilbert 和 Nanc 阅读全文
posted @ 2016-12-22 16:00 bonelee 阅读(1875) 评论(0) 推荐(0) 编辑
摘要: Greenplum数据库基于PostgreSQL开源技术。本质上讲,它是多个PostgreSQL实例一起充当一个数据库管理系统。Greenplum以PostgreSQL 8.2.15为基础构建,在SQL支持、特性、配置选项和终端用户功能方面非常像PostgreSQL,用户操作Greenplum就跟平 阅读全文
posted @ 2016-12-22 15:48 bonelee 阅读(2256) 评论(0) 推荐(0) 编辑
摘要: 现实中很多数据都是用图来表达的,比如社交网络中人与人的关系、地图数据、或是基因信息等等。RDBMS并不适合表达这类数据,而且由于海量数据的存在,让其显得捉襟见肘。NoSQL数据库的兴起,很好地解决了海量数据的存放问题,图数据库也是NoSQL的一个分支,相比于NoSQL中的其他分支,它很适合用来原生表 阅读全文
posted @ 2016-12-22 14:59 bonelee 阅读(35863) 评论(0) 推荐(3) 编辑
摘要: You are given two linked lists representing two non-negative numbers. The most significant digit comes first and each of their nodes contain a single 阅读全文
posted @ 2016-12-21 23:06 bonelee 阅读(402) 评论(0) 推荐(0) 编辑
摘要: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: c 阅读全文
posted @ 2016-12-21 22:37 bonelee 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/haippy/archive/2011/12/04/2276064.html 有时间再好好看下整个文章! 说起LevelDb也许您不清楚,但是如果作为IT工程师,不知道下面两位大神级别的工程师,那您的领导估计会Hold不住了:Jeff Dean和S 阅读全文
posted @ 2016-12-21 17:38 bonelee 阅读(2839) 评论(0) 推荐(0) 编辑
摘要: 注意两个地方说法有出入,待实测! es可以根据磁盘使用情况来决定是否继续分配shard。默认设置是开启的,也可以通过api关闭:cluster.routing.allocation.disk.threshold_enabled: false 在开启的情况下,有两个重要的设置: cluster.rou 阅读全文
posted @ 2016-12-21 12:07 bonelee 阅读(6728) 评论(0) 推荐(0) 编辑
摘要: elasticsearch还有一个重要的参数bootstrap.mlockall,这个参数的目的是当你无法关闭系统的swap的时候,建议把这个参数设为true。防止在内存不够用的时候,elasticsearch的内存被交换至交换区,导致性能骤降。 mlock, munlock, mlockall, 阅读全文
posted @ 2016-12-21 11:36 bonelee 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 转自:http://cjjwzs.iteye.com/blog/1059381 本文将从内存分页的原理,如何调整分页大小两节内容,向你阐述LargePage对JVM的性能有何提升作用,并在文末点明了大内分页的副作用。OK,让我们开始吧! 内存分页大小对性能的提升原理 首先,我们需要回顾一小部分计算机 阅读全文
posted @ 2016-12-21 11:25 bonelee 阅读(3741) 评论(0) 推荐(0) 编辑
摘要: Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. 阅读全文
posted @ 2016-12-21 09:21 bonelee 阅读(273) 评论(0) 推荐(0) 编辑
上一页 1 ··· 257 258 259 260 261 262 263 264 265 ··· 271 下一页