Notes
  • Introduce
  • Go
    • Grammar
      • Basic
      • Goroutines & Channels
      • Test
    • System Library
      • Module
      • sync
      • context
      • net
    • Concurrency in Go
    • The Go Memory Model
    • Code Snippet
  • Rust
    • The Rust Programming Language
    • Rust by Example
  • JAVA
    • Preface
    • Grammar
      • Basic
      • Data Types
      • Operator
      • Exceptions
    • Class Libraries
      • Collection
      • Stream
      • IO
      • NIO
      • RMI
    • Concurrency
      • Preface
      • JMM
      • Synchronized & CAS
      • Deadlock
      • Thread
      • Lock & Condition
      • Utility Class
      • Thread-safe Collection
      • Atomic Class
      • Fork/Join
      • Concurrency Design Patterns
        • Immutable
        • Copy-on-Write
        • ThreadLocal
        • Multitheading If
        • Division
    • JVM
      • Class & Instance Initialization
      • Runtime Data Area
      • Garbage Collection
    • Web Container
      • Tomcat Architecture
      • Jetty Architecture
    • Spring
    • Tuning
      • Programming
  • Computer Science
    • Computer Organization
    • Algorithm
      • Complexity
      • Linear List
      • Sort
      • Binary Search
      • Skip List
      • Hash Table
      • Tree
      • Graph
      • String Matching
      • Bloom Filter
      • Greedy Algorithm
      • Divide and Conquer
      • Back Tracking
      • Dynamic Programming
    • Network Protocol
      • Pysical Layer
      • Data Link Layer
      • Network Layer
      • Transport Layer
      • Application layer
      • HTTP
      • HTTP/2 in Action
    • Operating System
      • Basic
      • System Initialization
      • Diagnostic Tools
      • CPU Diagnosis
      • Memory Diagnosis
      • Disk Diagnosis
      • Network Diagnosis
      • Monitor System
    • Design Patterns
      • UML
      • OOP
      • Principle
      • Refactoring & Specification
      • Creational
        • Singleton
        • Factory
        • Builder
        • Prototype
      • Structural
        • Proxy
        • Bridge
        • Decorator
        • Adapter
        • Facade
        • Composite
        • FlyWeight
      • Behavioral
        • Observer
        • Template Method
        • Strategy
        • State
        • Iterator
        • Chain of Responsibility
    • Distributed System
      • Protocol & Algorithm
      • Transcation
      • Theory
      • Resource Management
      • Scheduling
      • Computing
      • Message Queue
      • Cache
      • Consistent Hashing
  • database
    • InfluxDB
      • In-Memory Index
      • Meta
    • MySQL
      • SQL
      • Architecture
      • Log
      • Transaction
      • Indexing
      • Lock
      • Storage
    • Redis
    • Elasticsearch
      • Local Debug
    • HBase
    • Kafka
    • ZooKeeper
  • Reading
    • RocketMQ
    • 演说之禅
    • So Good They Can't Ignore You
    • 学会提问
    • Lecture
  • Other
    • v2ray
    • Kubernetes
    • Git
    • Maven
    • Anaconda And Conda
    • Fuck! Shit!
      • Remove Final by Reflection
      • Ingress Host
      • ExecuterService submit
  • Open source contribution
Powered by GitBook
On this page

Was this helpful?

Introduce

  • GitBook地址:https://yunzhao.gitbook.io/notes/

  • GitHub 地址:https://github.com/StoneYunZhao

由于作为笔记用,一个技术点在工作、学习过程中会不断增补。目录如下:

  • 开源贡献:对 Github 上某些项目提的 bug fix, feature 等。

    • InfluxDB

    • InfluxDB Document

    • NSQ

  • Go:

    • 基本语法

    • 系统库

    • 《Concurrency in Go》

    • The Go Memory Model

    • 代码片段

  • Rust

    • 《The Rust Programming Language》

    • 《Rust by Example》

  • Java:

    • 序言

    • 基本语法

    • JDK 类库

    • J.U.C

    • JVM

    • Web 容器

    • Spring

    • 调优

  • 计算机科学:

    • 计算机组成原理

    • 算法

    • 网络协议

      • 《HTTP/2 in Action》

    • 操作系统

    • 设计模式

    • 分布式系统

  • 数据库:

    • InfluxDB

    • MySQL

    • Redis

    • Elasticsearch

    • HBase

    • Kafka

    • ZooKeeper

  • 阅读

    • 《Concurrency in Go》

    • 《HTTP/2 in Action》

    • 《RocketMQ 实战与原理解析》

    • 《演说之禅》

    • 《优秀到不能被忽视》

    • 《学会提问》

    • 讲座

  • 其它:

    • Kubernetes

    • Git

    • Maven

    • Conda

    • 踩的坑

NextGrammar

Last updated 2 years ago

Was this helpful?