摘要: 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 阅读(2827) 评论(0) 推荐(0) 编辑
摘要: 注意两个地方说法有出入,待实测! es可以根据磁盘使用情况来决定是否继续分配shard。默认设置是开启的,也可以通过api关闭:cluster.routing.allocation.disk.threshold_enabled: false 在开启的情况下,有两个重要的设置: cluster.rou 阅读全文
posted @ 2016-12-21 12:07 bonelee 阅读(6717) 评论(0) 推荐(0) 编辑
摘要: elasticsearch还有一个重要的参数bootstrap.mlockall,这个参数的目的是当你无法关闭系统的swap的时候,建议把这个参数设为true。防止在内存不够用的时候,elasticsearch的内存被交换至交换区,导致性能骤降。 mlock, munlock, mlockall, 阅读全文
posted @ 2016-12-21 11:36 bonelee 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 转自:http://cjjwzs.iteye.com/blog/1059381 本文将从内存分页的原理,如何调整分页大小两节内容,向你阐述LargePage对JVM的性能有何提升作用,并在文末点明了大内分页的副作用。OK,让我们开始吧! 内存分页大小对性能的提升原理 首先,我们需要回顾一小部分计算机 阅读全文
posted @ 2016-12-21 11:25 bonelee 阅读(3734) 评论(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) 编辑