LiuDongdong

爱好由来落笔难,一诗千改心始安。

mysql 索引结构

Innodb 架构 Buffer Pool 用于加速读 Change Buffer 用于没有非唯一索引的加速写 Log Buffer 用于加速redo log写 自适应Hash索引主要用于加快查询页。在查询时,Innodb通

几何类

1. 直线上最多的点数 给你一个数组 points ,其中 points[i] = [xi, yi] 表示 X-Y 平面上的一个点。求最多有多少个点在同一条直线上。先枚举两条点(确定一条线),然后检查其余

1. 竞争状态 // 这个示例程序展示如何在程序里造成竞争状态 // 实际上不希望出现这种情况 package main import ( "fmt" "runtime" "sync" ) var ( // counter是所有goroutine都

通道

在 Go 语言里,你不仅可以使用原子函数和互斥锁来保证对共享资源的安全访问以及消除竞争状态,还可以使用通道,通过发送和接收需要共享的资源,在 goroutine 之间

Kubernetes-Pod

While Kubernetes supports more container runtimes than just Docker, Docker is the most commonly known runtime, and it helps to describe Pods using some terminology from Docker. The shared context of a Pod is a set of Linux namespaces, cgroups, and potentially other facets of isolation - the same things that isolate a Docker container. Within a Pod’s context, the individual applications may have further sub-isolations applied. In terms of
0%