hf400159 commented on code in PR #6736: URL: https://github.com/apache/apisix/pull/6736#discussion_r857056293
########## docs/zh/latest/FAQ.md: ########## @@ -522,7 +545,7 @@ curl -i http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335 }' ``` -测试请求: +测试这个配置: ```shell $ curl http://127.0.0.1:9080/foo/get -i Review Comment: ```suggestion curl http://127.0.0.1:9080/foo/get -i ``` ########## docs/zh/latest/FAQ.md: ########## @@ -21,73 +21,97 @@ title: 常见问题 # --> -## 为什么要做 API 网关?不是已经有其他的开源网关了吗? +## 为什么我们需要一个新的 API 网关?不是已经有其他的开源网关了吗? -微服务领域对 API 网关有新的需求:更高的灵活性、更高的性能要求,以及云原生的贴合。 +随着企业向云本地微服务的发展,企业对高性能、灵活、安全、可扩展的 API 网关的需求越来越大。 + +APISIX 在这些指标上优于其它 API 网关,同时具有平台无关性和完全动态的特性,如支持多种协议、细粒度路由和多语言支持。 ## APISIX 和其他的 API 网关有什么不同之处? -APISIX 基于 etcd 来完成配置的保存和同步,而不是 PostgreSQL 或者 MySQL 这类关系型数据库。 -这样不仅去掉了轮询,让代码更加的简洁,配置同步也更加实时。同时系统也不会存在单点,可用性更高。 +Apache APISIX 在以下方面有所不同: + +— 它使用 etcd 来保存和同步配置,而不是使用如 PostgreSQL 或 MySQL 这类的关系数据库。etcd 中的实时事件通知系统比这些替代方案更容易扩展。这允许 APISIX 实时同步配置,使代码简洁,并避免单点故障。 +- 完全动态 +- 支持[热加载插件](/docs/apisix/plugins/#hot-reload)。 Review Comment: ```suggestion - 支持[热加载插件](/docs/apisix/terminology/plugin#热加载)。 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
