Skip to content

Yaml File

ZengJingtao edited this page Jan 30, 2023 · 3 revisions

概述

Yaml 通常被认为是 json 的一个超集,相比 json,Yaml 更适合做配置文件。

Yaml in ToplingDB

class SidePluginRepo {
 public:
  // ...
  Status ImportAutoFile(const Slice& fname); // 根据后缀名自动调用 Json(.json,.js) 或 Yaml(.yaml,.yml)
  Status ImportJsonFile(const Slice& fname);
  Status ImportYamlFile(const Slice& fname);
  // ...
};

YAML 入门教程

阮一峰 的 Yaml 教程