yaml 性能测试(YAML入门教程)

前言,我来为大家科普一下关于yaml 性能测试?下面希望有你要的答案,我们一起来看看吧!

yaml 性能测试(YAML入门教程)

yaml 性能测试


前言

YAML 是 "yaml Ain't a Markup Language"(YAML 不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实是:"Yet Another Markup Language"(仍是一种标记语言)。

YAML 的语法和其他高级语言类似,并且可以简单表达清单、散列表,标量等数据形态。它使用空白符号缩进和大量依赖外观的特色,特别适合用来表达或编辑数据结构、各种配置文件、倾印调试内容、文件大纲(例如:许多电子邮件标题格式和YAML非常接近)。

YAML 的配置文件后缀为 .yml,如:ansible-playbook.yml,Hexo的配置文件也是_config.yml

更新历史

2020年01月09日 - 初稿

阅读原文 - https://wsgzao.github.io/post/yaml/

扩展阅读

YAML


YAML简介

YAML: YAML Ain't Markup Language

What It Is: YAML is a human friendly data serialization standard for all programming languages.

YAML 语言(发音 /ˈjæməl/ )的设计目标,就是方便人类读写。它实质上是一种通用的数据串行化格式。

它的基本语法规则如下。

  • 大小写敏感
  • 使用缩进表示层级关系
  • 缩进时不允许使用Tab键,只允许使用空格。
  • 缩进的空格数目不重要,只要相同层级的元素左侧对齐即可

# 表示注释,从这个字符一直到行尾,都会被解析器忽略。

YAML 支持的数据结构有三种。

  • 对象:键值对的集合,又称为映射(mapping)/ 哈希(hashes) / 字典(dictionary)
  • 数组:一组按次序排列的值,又称为序列(sequence) / 列表(list)
  • 纯量(scalars):单个的、不可再分的值

X分钟速成Y

其中 Y=yaml

源代码下载: learnyaml-cn.yaml

YAML 是一个数据序列化语言,被设计成人类直接可写可读的。

它是 JSON 的严格超集,增加了语法显著换行符和缩进,就像 Python。但和 Python 不一样, YAML 根本不容许文字制表符。

# YAML 中的注解看起来像这样。 ################ # 标量类型     # ################ # 我们的根对象 (它们在整个文件里延续) 将会是一个映射, # 它等价于在别的语言里的一个字典,哈希表或对象。 key: value Another_key: Another value goes here. a_number_value: 100 # 数字 1 会被解释为数值,而不是一个布尔值。 # 如果你想要的是一个布尔值,使用 true。 scientific_notation: 1e 12 boolean: true null_value: null key with spaces: value # 注意,字符串不必被括在引号中,但也可以被括起来。 however: 'A string, enclosed in quotes.' 'Keys can be quoted too.': "Useful if you want to put a ':' in your key." single quotes: 'have ''one'' escape pattern' double quotes: "have many: \", \0, \t, \u263A, \x0d\x0a == \r\n, and more." # UTF-8/16/32 字符需要被转义(encoded) Superscript two: \u00B2 # 多行字符串既可以写成像一个'文字块'(使用 |), # 或像一个'折叠块'(使用 '>')。 literal_block: |     This entire block of text will be the value of the 'literal_block' key,     with line breaks being preserved.     The literal continues until de-dented, and the leading indentation is     stripped.         Any lines that are 'more-indented' keep the rest of their indentation -         these lines will be indented by 4 spaces. folded_style: >     This entire block of text will be the value of 'folded_style', but this     time, all newlines will be replaced with a single space.     Blank lines, like above, are converted to a newline character.         'More-indented' lines keep their newlines, too -         this text will appear over two lines. #################### # 集合类型         # #################### # 嵌套是通过缩进完成的。推荐使用 2 个空格的缩进(但非必须) a_nested_map:   key: value   another_key: Another Value   another_nested_map:     hello: hello # 映射的键不必是字符串。 0.25: a float key # 键也可以是复合型的,比如多行对象 # 我们用 ? 后跟一个空格来表示一个复合键的开始。 ? |   This is a key   that has multiple lines : and this is its value # YAML 也允许使用复杂键语法表示序列间的映射关系。 # 但有些语言的解析器可能会不支持。 # 一个例子: ? - Manchester United   - Real Madrid : [ 2001-01-01, 2002-02-02 ] # 序列 (等价于列表或数组) 看起来像这样: # 注意 '-' 算作缩进 a_sequence:   - Item 1   - Item 2   - 0.5 # 序列可以包含不同类型。   - Item 4   - key: value     another_key: another_value   -     - This is a sequence     - inside another sequence   - - - Nested sequence indicators       - can be collapsed # 因为 YAML 是 JSON 的超集,你也可以写 JSON 风格的映射和序列: json_map: {"key": "value"} json_seq: [3, 2, 1, "takeoff"] and quotes are optional: {key: [3, 2, 1, takeoff]} ####################### # 其余的 YAML 特性    # ####################### # YAML 还有一个方便的特性叫 '锚',它能让你很容易在文档中进行文本复用。 # 如下两个键会有相同的值: anchored_content: &anchor_name This string will appear as the value of two keys. other_anchor: *anchor_name # 锚也可被用来复制/继承属性 base: &base   name: Everyone has same name # The regexp << is called Merge Key Language-Independent Type. # 它表明指定映射的所有键值会插入到当前的映射中。 foo: &foo   <<: *base   age: 10 bar: &bar   <<: *base   age: 20 # foo 和 bar 将都含有 name: Everyone has same name # YAML 还有标签,你可以用它显示地声明类型。 explicit_string: !!str 0.5 # 一些解析器实现特定语言的标签,就像这个针对 Python 的复数类型。 python_complex_number: !!python/complex 1 2j # 我们也可以在 YAML 的复合键中使用特定语言的标签 ? !!python/tuple [5, 7] : Fifty Seven # 将会是 Python 中的  {(5, 7): 'Fifty Seven'} #################### # 其余的 YAML 类型 # #################### # 除了字符串和数字,YAML 还能理解其它标量。 # ISO 格式的日期和日期时间文本也可以被解析。 datetime: 2001-12-15T02:59:43.1Z datetime_with_spaces: 2001-12-14 21:59:43.10 -5 date: 2002-12-14 # 这个 !!binary 标签表明这个字符串实际上 # 是一个用 base64 编码表示的二进制 blob。 gif_file: !!binary |   R0lGODlhDAAMAIQAAP//9/X17unp5WZmZgAAAOfn515eXvPz7Y6OjuDg4J fn5   OTk6enp56enmlpaWNjY6Ojo4SEhP/ f/ f/ f/ f/ f/ f/ f/ f/    f/ f/ f/ f/ f/ SH Dk1hZGUgd2l0aCBHSU1QACwAAAAADAAMAAAFLC   AgjoEwnuNAFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84BwwEeECcgggoBADs= # YAML 还有一个集合类型,它看起来像这样: set:   ? item1   ? item2   ? item3 or: {item1, item2, item3} # 集合只是值为 null 的映射;上面的集合等价于: set2:   item1: null   item2: null   item3: null ...  # document end

参考文章

YAML official website

Online YAML Validator

X分钟速成Y

YAML 入门教程

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页