>>> YieldNull
  • /blog
  • /archives
  • /github
  • /about

Blog Entries all / by tag / by year

  • Java异常处理机制及实现

    2018-05-28 23:09:42 / Java /2039 hits

    Java中的异常分为两种,Checked Exceptions以及Unchecked Exceptions。Error、RuntimeException及其子类都是Unchecked Exceptions,其余所有Throwable及其子类都是Checked Exceptions,即需要被显式地声明或处理。

    Read more...


  • ConcurrentLinkedQueue 源码分析

    2018-05-26 14:17:41 / Java JCF /1859 hits

    ConcurrentLinkedQueue 使用了非阻塞的方式提供线程安全的队列,内部使用的是一个普通的单向链表,记录首尾节点,并且首部有一个dummy node。入队时在尾部加入节点,出队时从首部删除节点。所有对链表的修改都通过CAS操作来保证原子性。下面分析其主要的代码实现。

    Read more...


  • 消息队列介绍

    2018-05-21 15:18:40 / MQ /1764 hits

    介绍Redis、Zookeeper、RabbitMQ、Kafka。

    Read more...


  • Java Collections Framework

    2018-02-05 18:24:36 / Java /1756 hits

    archi

    Read more...


  • Paxos 算法原理

    2017-12-19 14:15:00 / Consensus-Algorithm /1805 hits

    Abstract

    The Paxos algorithm, when presented in plain English, is very simple.

    -- Leslie Lamport

    Read more...


  • Maven 仓库依赖网络分析

    2017-11-20 22:10:11 / Maven Spark /1205 hits

    使用 Spark GraphX 以及 Gephi 对 Maven 仓库中的 Artifact, Group 间的依赖网络进行可视化的分析。

    Read more...


  • « Previous 1 / 11
  • Next 3 / 11 »

About this site © YieldNull, . 鄂ICP备16003391号