├── .editorconfig ├── .gitignore ├── .nojekyll ├── README.md ├── _includes └── footer_custom.html ├── _navbar.md ├── composer.json ├── en └── .keep ├── index.html ├── no._config.yml ├── t.php └── zh-CN ├── .nojekyll ├── README.md ├── SUMMARY.md ├── _sidebar.md ├── annotation ├── index.md ├── tool.md ├── usage.md └── why.md ├── aop ├── index.md ├── order.md ├── statement.md └── usage.md ├── bean ├── bean.md ├── index.md ├── interface.md ├── prototype.md ├── request.md └── singleton.md ├── best-practices ├── architecture.md ├── demo.md ├── deploy.md ├── index.md ├── middleware.md └── nginx-config.md ├── common ├── co.md ├── generic.md ├── index.md ├── stdlib-array.md ├── stdlib.md └── timer.md ├── component ├── entry.md ├── how-to-load.md ├── index.md └── structure.md ├── config ├── config.md ├── env.md └── index.md ├── console ├── config.md ├── data-show.md ├── definition.md ├── index.md ├── input.md ├── output.md └── usage.md ├── container └── index.md ├── db ├── builder.md ├── index.md ├── model.md ├── origin.md ├── selectDb.md ├── setting.md └── transaction.md ├── error ├── index.md ├── scenes.md └── usage.md ├── event ├── index.md ├── swoft-events.md ├── swoole-events.md └── usage.md ├── extra ├── apollo.md ├── cache.md ├── consul.md ├── http-session.md ├── postgresql.md ├── swoole-tracker.md ├── view.md └── whoops.md ├── http-server ├── command.md ├── controller.md ├── exception.md ├── http.md ├── index.md ├── middleware.md ├── request.md ├── response.md ├── route.md └── setting.md ├── i18n ├── index.md ├── setting.md └── usage.md ├── image ├── aop │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── AOP.png │ └── OOP.png ├── bean │ ├── DIPUML.png │ └── NODIPUML.png ├── best │ └── architecture.png ├── console │ ├── cli-app.jpg │ ├── cli-command.jpg │ ├── cli-group.jpg │ └── cli-version.jpg ├── extra │ ├── .keep │ ├── block.png │ ├── memory.png │ ├── monitor.png │ ├── process.png │ ├── swoft-whoops.jpg │ └── trace.png ├── http-server │ ├── process │ │ └── 1.png │ └── swoft2-request-flow.png ├── ms │ ├── breaker_base.png │ ├── breaker_ext.png │ ├── limiter_leaky.png │ └── limiter_token.png ├── ready │ ├── eventloop.png │ ├── fpm.png │ └── lnmp.png ├── rpc-server │ ├── 1.png │ ├── 2.png │ └── 3.png ├── tcp-server │ ├── .keep │ └── devtool-tcp-test.png ├── tool │ ├── UpConfirm.png │ ├── migrate.png │ ├── migrateAdd.png │ ├── migrateCreate.png │ ├── migrateHis.png │ ├── migrateMessge.png │ ├── migrateUp.png │ ├── migrateUpDb.png │ ├── migrateUpPrefix.png │ └── swoftcli │ │ ├── hot-restart-help.jpg │ │ ├── pack-phar.jpg │ │ ├── run-hot-restart.jpg │ │ ├── swoftcli-gen.png │ │ ├── swoftcli-home.png │ │ ├── swoftcli-new-app-example.png │ │ ├── swoftcli-new-app.png │ │ ├── swoftcli-new-cpt-example.png │ │ ├── swoftcli-new-cpt.png │ │ └── swoftcli-new.png ├── ws-server │ ├── .keep │ ├── ws-echo-test.jpg │ └── ws-test-page.png └── wx.png ├── introduction ├── join.md ├── question.md ├── swoft.md └── update.md ├── log ├── clog.md ├── index.md └── log.md ├── ms └── govern │ ├── breaker.md │ ├── config.md │ ├── index.md │ ├── limiter.md │ └── register-discovery.md ├── notice ├── index.md ├── memory-leak.md ├── performance-optimization.md └── prohibited.md ├── process ├── index.md ├── process-pool.md ├── process.md └── user-process.md ├── quick-start ├── development.md ├── index.md ├── install.md ├── project-skeleton.md └── start-swoft.md ├── ready ├── 10.index.md ├── 20.tradition.md ├── 30.io.md ├── 40.swoole.md ├── 50.composer.md └── 60.context.md ├── redis ├── index.md ├── pipeline.md ├── pub-sub.md ├── setting.md ├── transaction.md └── usage.md ├── rpc-client ├── index.md ├── rpc-1.0.md ├── setting.md └── usage.md ├── rpc-server ├── command.md ├── index.md ├── request-response.md ├── setting.md └── statement.md ├── rpc.md ├── task ├── async.md ├── coroutine.md ├── crontab.md ├── index.md ├── setting.md └── statement.md ├── tcp-server ├── client-communicate.md ├── config.md ├── controller.md ├── event.md ├── index.md └── manage.md ├── tool ├── devtool │ ├── entity.md │ ├── index.md │ └── migrations.md └── swoftcli │ ├── build-phar.md │ ├── create-app-or-component.md │ ├── generate-app-classs.md │ ├── hot-restart.md │ ├── index.md │ └── install.md ├── validator ├── anywhere-validator.md ├── controller-validator.md ├── customer-rule.md ├── index.md ├── setting.md ├── statement.md └── user-validator.md └── websocket-server ├── config.md ├── exception.md ├── index.md ├── manage.md ├── message-route.md ├── message-send.md └── module.md /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .git/ 3 | vendor/ 4 | .DS_Store 5 | composer.lock -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/README.md -------------------------------------------------------------------------------- /_includes/footer_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/_includes/footer_custom.html -------------------------------------------------------------------------------- /_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/_navbar.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/composer.json -------------------------------------------------------------------------------- /en/.keep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/index.html -------------------------------------------------------------------------------- /no._config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/no._config.yml -------------------------------------------------------------------------------- /t.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/t.php -------------------------------------------------------------------------------- /zh-CN/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/README.md -------------------------------------------------------------------------------- /zh-CN/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/SUMMARY.md -------------------------------------------------------------------------------- /zh-CN/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/_sidebar.md -------------------------------------------------------------------------------- /zh-CN/annotation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/annotation/index.md -------------------------------------------------------------------------------- /zh-CN/annotation/tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/annotation/tool.md -------------------------------------------------------------------------------- /zh-CN/annotation/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/annotation/usage.md -------------------------------------------------------------------------------- /zh-CN/annotation/why.md: -------------------------------------------------------------------------------- 1 | Swoft 框架使用注解最大的原因就是因为简洁、灵活。 -------------------------------------------------------------------------------- /zh-CN/aop/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/aop/index.md -------------------------------------------------------------------------------- /zh-CN/aop/order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/aop/order.md -------------------------------------------------------------------------------- /zh-CN/aop/statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/aop/statement.md -------------------------------------------------------------------------------- /zh-CN/aop/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/aop/usage.md -------------------------------------------------------------------------------- /zh-CN/bean/bean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/bean.md -------------------------------------------------------------------------------- /zh-CN/bean/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/index.md -------------------------------------------------------------------------------- /zh-CN/bean/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/interface.md -------------------------------------------------------------------------------- /zh-CN/bean/prototype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/prototype.md -------------------------------------------------------------------------------- /zh-CN/bean/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/request.md -------------------------------------------------------------------------------- /zh-CN/bean/singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/bean/singleton.md -------------------------------------------------------------------------------- /zh-CN/best-practices/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/best-practices/architecture.md -------------------------------------------------------------------------------- /zh-CN/best-practices/demo.md: -------------------------------------------------------------------------------- 1 | > TODO -------------------------------------------------------------------------------- /zh-CN/best-practices/deploy.md: -------------------------------------------------------------------------------- 1 | > TODO -------------------------------------------------------------------------------- /zh-CN/best-practices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/best-practices/index.md -------------------------------------------------------------------------------- /zh-CN/best-practices/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/best-practices/middleware.md -------------------------------------------------------------------------------- /zh-CN/best-practices/nginx-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/best-practices/nginx-config.md -------------------------------------------------------------------------------- /zh-CN/common/co.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/co.md -------------------------------------------------------------------------------- /zh-CN/common/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/generic.md -------------------------------------------------------------------------------- /zh-CN/common/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/index.md -------------------------------------------------------------------------------- /zh-CN/common/stdlib-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/stdlib-array.md -------------------------------------------------------------------------------- /zh-CN/common/stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/stdlib.md -------------------------------------------------------------------------------- /zh-CN/common/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/common/timer.md -------------------------------------------------------------------------------- /zh-CN/component/entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/component/entry.md -------------------------------------------------------------------------------- /zh-CN/component/how-to-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/component/how-to-load.md -------------------------------------------------------------------------------- /zh-CN/component/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/component/index.md -------------------------------------------------------------------------------- /zh-CN/component/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/component/structure.md -------------------------------------------------------------------------------- /zh-CN/config/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/config/config.md -------------------------------------------------------------------------------- /zh-CN/config/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/config/env.md -------------------------------------------------------------------------------- /zh-CN/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/config/index.md -------------------------------------------------------------------------------- /zh-CN/console/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/config.md -------------------------------------------------------------------------------- /zh-CN/console/data-show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/data-show.md -------------------------------------------------------------------------------- /zh-CN/console/definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/definition.md -------------------------------------------------------------------------------- /zh-CN/console/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/index.md -------------------------------------------------------------------------------- /zh-CN/console/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/input.md -------------------------------------------------------------------------------- /zh-CN/console/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/output.md -------------------------------------------------------------------------------- /zh-CN/console/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/console/usage.md -------------------------------------------------------------------------------- /zh-CN/container/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/container/index.md -------------------------------------------------------------------------------- /zh-CN/db/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/builder.md -------------------------------------------------------------------------------- /zh-CN/db/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/index.md -------------------------------------------------------------------------------- /zh-CN/db/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/model.md -------------------------------------------------------------------------------- /zh-CN/db/origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/origin.md -------------------------------------------------------------------------------- /zh-CN/db/selectDb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/selectDb.md -------------------------------------------------------------------------------- /zh-CN/db/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/setting.md -------------------------------------------------------------------------------- /zh-CN/db/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/db/transaction.md -------------------------------------------------------------------------------- /zh-CN/error/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/error/index.md -------------------------------------------------------------------------------- /zh-CN/error/scenes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/error/scenes.md -------------------------------------------------------------------------------- /zh-CN/error/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/error/usage.md -------------------------------------------------------------------------------- /zh-CN/event/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/event/index.md -------------------------------------------------------------------------------- /zh-CN/event/swoft-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/event/swoft-events.md -------------------------------------------------------------------------------- /zh-CN/event/swoole-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/event/swoole-events.md -------------------------------------------------------------------------------- /zh-CN/event/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/event/usage.md -------------------------------------------------------------------------------- /zh-CN/extra/apollo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/apollo.md -------------------------------------------------------------------------------- /zh-CN/extra/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/cache.md -------------------------------------------------------------------------------- /zh-CN/extra/consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/consul.md -------------------------------------------------------------------------------- /zh-CN/extra/http-session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/http-session.md -------------------------------------------------------------------------------- /zh-CN/extra/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/postgresql.md -------------------------------------------------------------------------------- /zh-CN/extra/swoole-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/swoole-tracker.md -------------------------------------------------------------------------------- /zh-CN/extra/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/view.md -------------------------------------------------------------------------------- /zh-CN/extra/whoops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/extra/whoops.md -------------------------------------------------------------------------------- /zh-CN/http-server/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/command.md -------------------------------------------------------------------------------- /zh-CN/http-server/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/controller.md -------------------------------------------------------------------------------- /zh-CN/http-server/exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/exception.md -------------------------------------------------------------------------------- /zh-CN/http-server/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/http.md -------------------------------------------------------------------------------- /zh-CN/http-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/index.md -------------------------------------------------------------------------------- /zh-CN/http-server/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/middleware.md -------------------------------------------------------------------------------- /zh-CN/http-server/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/request.md -------------------------------------------------------------------------------- /zh-CN/http-server/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/response.md -------------------------------------------------------------------------------- /zh-CN/http-server/route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/route.md -------------------------------------------------------------------------------- /zh-CN/http-server/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/http-server/setting.md -------------------------------------------------------------------------------- /zh-CN/i18n/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/i18n/index.md -------------------------------------------------------------------------------- /zh-CN/i18n/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/i18n/setting.md -------------------------------------------------------------------------------- /zh-CN/i18n/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/i18n/usage.md -------------------------------------------------------------------------------- /zh-CN/image/aop/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/aop/1.jpg -------------------------------------------------------------------------------- /zh-CN/image/aop/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/aop/2.jpg -------------------------------------------------------------------------------- /zh-CN/image/aop/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/aop/3.jpg -------------------------------------------------------------------------------- /zh-CN/image/aop/AOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/aop/AOP.png -------------------------------------------------------------------------------- /zh-CN/image/aop/OOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/aop/OOP.png -------------------------------------------------------------------------------- /zh-CN/image/bean/DIPUML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/bean/DIPUML.png -------------------------------------------------------------------------------- /zh-CN/image/bean/NODIPUML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/bean/NODIPUML.png -------------------------------------------------------------------------------- /zh-CN/image/best/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/best/architecture.png -------------------------------------------------------------------------------- /zh-CN/image/console/cli-app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/console/cli-app.jpg -------------------------------------------------------------------------------- /zh-CN/image/console/cli-command.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/console/cli-command.jpg -------------------------------------------------------------------------------- /zh-CN/image/console/cli-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/console/cli-group.jpg -------------------------------------------------------------------------------- /zh-CN/image/console/cli-version.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/console/cli-version.jpg -------------------------------------------------------------------------------- /zh-CN/image/extra/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /zh-CN/image/extra/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/block.png -------------------------------------------------------------------------------- /zh-CN/image/extra/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/memory.png -------------------------------------------------------------------------------- /zh-CN/image/extra/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/monitor.png -------------------------------------------------------------------------------- /zh-CN/image/extra/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/process.png -------------------------------------------------------------------------------- /zh-CN/image/extra/swoft-whoops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/swoft-whoops.jpg -------------------------------------------------------------------------------- /zh-CN/image/extra/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/extra/trace.png -------------------------------------------------------------------------------- /zh-CN/image/http-server/process/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/http-server/process/1.png -------------------------------------------------------------------------------- /zh-CN/image/http-server/swoft2-request-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/http-server/swoft2-request-flow.png -------------------------------------------------------------------------------- /zh-CN/image/ms/breaker_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ms/breaker_base.png -------------------------------------------------------------------------------- /zh-CN/image/ms/breaker_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ms/breaker_ext.png -------------------------------------------------------------------------------- /zh-CN/image/ms/limiter_leaky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ms/limiter_leaky.png -------------------------------------------------------------------------------- /zh-CN/image/ms/limiter_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ms/limiter_token.png -------------------------------------------------------------------------------- /zh-CN/image/ready/eventloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ready/eventloop.png -------------------------------------------------------------------------------- /zh-CN/image/ready/fpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ready/fpm.png -------------------------------------------------------------------------------- /zh-CN/image/ready/lnmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ready/lnmp.png -------------------------------------------------------------------------------- /zh-CN/image/rpc-server/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/rpc-server/1.png -------------------------------------------------------------------------------- /zh-CN/image/rpc-server/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/rpc-server/2.png -------------------------------------------------------------------------------- /zh-CN/image/rpc-server/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/rpc-server/3.png -------------------------------------------------------------------------------- /zh-CN/image/tcp-server/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /zh-CN/image/tcp-server/devtool-tcp-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tcp-server/devtool-tcp-test.png -------------------------------------------------------------------------------- /zh-CN/image/tool/UpConfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/UpConfirm.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrate.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateAdd.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateCreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateCreate.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateHis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateHis.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateMessge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateMessge.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateUp.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateUpDb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateUpDb.png -------------------------------------------------------------------------------- /zh-CN/image/tool/migrateUpPrefix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/migrateUpPrefix.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/hot-restart-help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/hot-restart-help.jpg -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/pack-phar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/pack-phar.jpg -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/run-hot-restart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/run-hot-restart.jpg -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-gen.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-home.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-new-app-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-new-app-example.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-new-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-new-app.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-new-cpt-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-new-cpt-example.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-new-cpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-new-cpt.png -------------------------------------------------------------------------------- /zh-CN/image/tool/swoftcli/swoftcli-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/tool/swoftcli/swoftcli-new.png -------------------------------------------------------------------------------- /zh-CN/image/ws-server/.keep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /zh-CN/image/ws-server/ws-echo-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ws-server/ws-echo-test.jpg -------------------------------------------------------------------------------- /zh-CN/image/ws-server/ws-test-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/ws-server/ws-test-page.png -------------------------------------------------------------------------------- /zh-CN/image/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/image/wx.png -------------------------------------------------------------------------------- /zh-CN/introduction/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/introduction/join.md -------------------------------------------------------------------------------- /zh-CN/introduction/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/introduction/question.md -------------------------------------------------------------------------------- /zh-CN/introduction/swoft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/introduction/swoft.md -------------------------------------------------------------------------------- /zh-CN/introduction/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/introduction/update.md -------------------------------------------------------------------------------- /zh-CN/log/clog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/log/clog.md -------------------------------------------------------------------------------- /zh-CN/log/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/log/index.md -------------------------------------------------------------------------------- /zh-CN/log/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/log/log.md -------------------------------------------------------------------------------- /zh-CN/ms/govern/breaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ms/govern/breaker.md -------------------------------------------------------------------------------- /zh-CN/ms/govern/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ms/govern/config.md -------------------------------------------------------------------------------- /zh-CN/ms/govern/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ms/govern/index.md -------------------------------------------------------------------------------- /zh-CN/ms/govern/limiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ms/govern/limiter.md -------------------------------------------------------------------------------- /zh-CN/ms/govern/register-discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ms/govern/register-discovery.md -------------------------------------------------------------------------------- /zh-CN/notice/index.md: -------------------------------------------------------------------------------- 1 | # 特别注意 -------------------------------------------------------------------------------- /zh-CN/notice/memory-leak.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zh-CN/notice/performance-optimization.md: -------------------------------------------------------------------------------- 1 | # 性能调优 -------------------------------------------------------------------------------- /zh-CN/notice/prohibited.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/notice/prohibited.md -------------------------------------------------------------------------------- /zh-CN/process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/process/index.md -------------------------------------------------------------------------------- /zh-CN/process/process-pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/process/process-pool.md -------------------------------------------------------------------------------- /zh-CN/process/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/process/process.md -------------------------------------------------------------------------------- /zh-CN/process/user-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/process/user-process.md -------------------------------------------------------------------------------- /zh-CN/quick-start/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/quick-start/development.md -------------------------------------------------------------------------------- /zh-CN/quick-start/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/quick-start/index.md -------------------------------------------------------------------------------- /zh-CN/quick-start/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/quick-start/install.md -------------------------------------------------------------------------------- /zh-CN/quick-start/project-skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/quick-start/project-skeleton.md -------------------------------------------------------------------------------- /zh-CN/quick-start/start-swoft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/quick-start/start-swoft.md -------------------------------------------------------------------------------- /zh-CN/ready/10.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/10.index.md -------------------------------------------------------------------------------- /zh-CN/ready/20.tradition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/20.tradition.md -------------------------------------------------------------------------------- /zh-CN/ready/30.io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/30.io.md -------------------------------------------------------------------------------- /zh-CN/ready/40.swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/40.swoole.md -------------------------------------------------------------------------------- /zh-CN/ready/50.composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/50.composer.md -------------------------------------------------------------------------------- /zh-CN/ready/60.context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/ready/60.context.md -------------------------------------------------------------------------------- /zh-CN/redis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/index.md -------------------------------------------------------------------------------- /zh-CN/redis/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/pipeline.md -------------------------------------------------------------------------------- /zh-CN/redis/pub-sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/pub-sub.md -------------------------------------------------------------------------------- /zh-CN/redis/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/setting.md -------------------------------------------------------------------------------- /zh-CN/redis/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/transaction.md -------------------------------------------------------------------------------- /zh-CN/redis/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/redis/usage.md -------------------------------------------------------------------------------- /zh-CN/rpc-client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-client/index.md -------------------------------------------------------------------------------- /zh-CN/rpc-client/rpc-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-client/rpc-1.0.md -------------------------------------------------------------------------------- /zh-CN/rpc-client/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-client/setting.md -------------------------------------------------------------------------------- /zh-CN/rpc-client/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-client/usage.md -------------------------------------------------------------------------------- /zh-CN/rpc-server/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-server/command.md -------------------------------------------------------------------------------- /zh-CN/rpc-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-server/index.md -------------------------------------------------------------------------------- /zh-CN/rpc-server/request-response.md: -------------------------------------------------------------------------------- 1 | # 请求与响应 2 | 3 | -------------------------------------------------------------------------------- /zh-CN/rpc-server/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-server/setting.md -------------------------------------------------------------------------------- /zh-CN/rpc-server/statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc-server/statement.md -------------------------------------------------------------------------------- /zh-CN/rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/rpc.md -------------------------------------------------------------------------------- /zh-CN/task/async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/async.md -------------------------------------------------------------------------------- /zh-CN/task/coroutine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/coroutine.md -------------------------------------------------------------------------------- /zh-CN/task/crontab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/crontab.md -------------------------------------------------------------------------------- /zh-CN/task/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/index.md -------------------------------------------------------------------------------- /zh-CN/task/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/setting.md -------------------------------------------------------------------------------- /zh-CN/task/statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/task/statement.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/client-communicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/client-communicate.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/config.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/controller.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/event.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/index.md -------------------------------------------------------------------------------- /zh-CN/tcp-server/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tcp-server/manage.md -------------------------------------------------------------------------------- /zh-CN/tool/devtool/entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/devtool/entity.md -------------------------------------------------------------------------------- /zh-CN/tool/devtool/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/devtool/index.md -------------------------------------------------------------------------------- /zh-CN/tool/devtool/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/devtool/migrations.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/build-phar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/build-phar.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/create-app-or-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/create-app-or-component.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/generate-app-classs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/generate-app-classs.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/hot-restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/hot-restart.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/index.md -------------------------------------------------------------------------------- /zh-CN/tool/swoftcli/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/tool/swoftcli/install.md -------------------------------------------------------------------------------- /zh-CN/validator/anywhere-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/anywhere-validator.md -------------------------------------------------------------------------------- /zh-CN/validator/controller-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/controller-validator.md -------------------------------------------------------------------------------- /zh-CN/validator/customer-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/customer-rule.md -------------------------------------------------------------------------------- /zh-CN/validator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/index.md -------------------------------------------------------------------------------- /zh-CN/validator/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/setting.md -------------------------------------------------------------------------------- /zh-CN/validator/statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/statement.md -------------------------------------------------------------------------------- /zh-CN/validator/user-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/validator/user-validator.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/config.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/exception.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/index.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/manage.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/message-route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/message-route.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/message-send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/message-send.md -------------------------------------------------------------------------------- /zh-CN/websocket-server/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swoft-cloud/swoft-doc/HEAD/zh-CN/websocket-server/module.md --------------------------------------------------------------------------------