We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ada8f67 commit a29ab8bCopy full SHA for a29ab8b
client-go/1.store-indexer-cache.md
@@ -7,7 +7,7 @@
7
8
cache 实现了 `Store` 和 `Indexer` 接口,函数 `NewIndexer()` 和 `NewStore()` 均返回 cache 类型的对象。
9
10
-cache 使用比较广泛,如各种 `Informer` 和 `DeltaFIFO` 用它做缓存和索引对象。
+cache 使用比较广泛,如各种 `Informer` 和 `DeltaFIFO` 用它做对象缓存和索引。
11
12
## 对象缓存 Store
13
@@ -32,7 +32,7 @@ type Store interface {
32
33
`NewStore()` 函数返回一个实现该接口的 `struct cache` 类型对象(见后文分析)。
34
35
-`Queue` 接口是 `Store` 的超级,所以实现 `Queue` 接口的 `FIFO` 类型、`DeltaFIFO` 类型也实现了 `Store`接口。(详见: [2.queue-fifo-delta_fifo.md](./2.queue-fifo-delta_fifo.md))
+`Queue` 接口是 `Store` 的超集,所以实现 `Queue` 接口的 `FIFO` 类型、`DeltaFIFO` 类型也实现了 `Store`接口。(详见: [2.queue-fifo-delta_fifo.md](./2.queue-fifo-delta_fifo.md))
36
37
## 对象索引 Indexer
38
0 commit comments