3

Symfony让我了解了YAML的力量。过去,我默认使用 MySQL 为电子商务网站制作表格supported_countriesunits_of_measure或者sku_conditions. 但现在,我可能更喜欢使用YAML来创建config/countries.yml,config/units.ymlconfig/skuConditions.yml. 所以我很好奇——在这种情况下,在决定解析和分析 YAML 文件时是否需要考虑重要的性能因素 ~ 与 ~ 查询和分析 SQL 数据?

国家.yml

US:
    code: US
    name: United States
CA: 
    code: CA
    name: Canada 

skuConditions.yml

default-unit: new
units
    new:
        short: new
        long: brand spanking new
        description: never been used.
    open-box:
        short: open
        long: pretty much new
        description: the box has been opened but never used.
4

1 回答 1

2

我认为 YAML 非常适合配置文件,Symfony 就是这样使用它的,但是如果你的数据变化很大,你需要一个数据库。如果您担心性能,请考虑使用像 MongoDB 这样的 NoSQL 数据库。

于 2012-12-03T20:18:57.940 回答