[skip ci]Add comments in appendix_a_basic_components.md (#11762)

Signed-off-by: ruiyi.jiang <ruiyi.jiang@zilliz.com>
pull/11770/head
ryjiang 2021-11-15 09:17:13 +08:00 committed by GitHub
parent 39cc7839a0
commit 920453b840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -443,6 +443,7 @@ type MetaKv interface {
###### A.7.4 MetaKv
```go
// SnapShotKV is TxnKV for snapshot data. It must save timestamp.
type SnapShotKV interface {
Save(key string, value string, ts typeutil.Timestamp) error
Load(key string, ts typeutil.Timestamp) (string, error)