Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1516898
  • 博文数量: 399
  • 博客积分: 8508
  • 博客等级: 中将
  • 技术积分: 5302
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-14 09:28
个人简介

能力强的人善于解决问题,有智慧的人善于绕过问题。 区别很微妙,小心谨慎做后者。

文章分类

全部博文(399)

文章存档

2018年(3)

2017年(1)

2016年(1)

2015年(69)

2013年(14)

2012年(17)

2011年(12)

2010年(189)

2009年(93)

发布时间:2015-05-05 15:55:52

目的是得到 avatar01 ~ avatar16 的图片索引<img src="../images/avatar-{String( '0' + { school.school_number % 17}).slice(-2) }.svg" width="70" height="70"> ......【阅读全文】

阅读(1087) | 评论(0) | 转发(0)

发布时间:2015-05-03 16:33:47

查看某个进程打开的所有文件及端口, list open fileslsof -p 17911查看使用某个端口的进程lsof -i :900......【阅读全文】

阅读(972) | 评论(0) | 转发(0)

发布时间:2015-05-02 16:52:18

我们知道 HBase 是基于列族的数据库,数据存在HDFS里。数据横向切分成Region区域,类似sharding。集群中各个slave 叫 区域服务器 Region Server。所有列家族的元数据信息都必须和表的定义存在一块。在HBase 内部, 维护两个目录,分别以表的形式存在HDFS里,它们是 -ROOT- 和 .META.  . 它们维护当前最新的区域列表.........【阅读全文】

阅读(2955) | 评论(0) | 转发(0)

发布时间:2015-05-02 16:32:27

public class ConcurrentStack {         AtomicReference top = new AtomicReference();     public void push(E item) {         Node newHead = new Node(item);   .........【阅读全文】

阅读(920) | 评论(0) | 转发(0)

发布时间:2015-05-02 16:28:41

Java 内存模型The JMM defines a partial ordering called happens-before on all actions within the program.The rules for happens-before are:Program order rule. Each action in a thread happens-before every action in that thread that comes later in the program order.Monitor lock rule. A.........【阅读全文】

阅读(1023) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

我本痴情2013-12-26 15:33

谢谢你的分享,收益颇多,谢谢

回复  |  举报

shiluodan2013-08-08 20:55

还只是菜鸟,不过还是希望能看到那些很厉害的博文。很感谢你的分享。

回复  |  举报
留言热议
请登录后留言。

登录 注册