Skip to content

Yaml File

ZengJingtao edited this page Jan 30, 2023 · 2 revisions

Overview

Yaml is generally considered to be a superset of json. Compared with json, yaml is more suitable for configuration files.

Yaml in ToplingDB

class SidePluginRepo {
 public:
  // ...
  Status ImportAutoFile(const Slice& fname); // Automatically call Json(.json,.js) or Yaml(.yaml,.yml) according to the suffix
  Status ImportJsonFile(const Slice& fname);
  Status ImportYamlFile(const Slice& fname);
  // ...
};

YAML 入门教程

阮一峰 的 Yaml 教程