Introduction
With powerful extensions like swoole, more and more frameworks are based on swoole Developed, Swoft is one of the good PHP frameworks. Swoft is an annotation framework based on Swoole's native coroutine. It comes with resident memory and encapsulation of other Swoole functions. There is a coroutine client built into swoft. At the same time, there are many new concepts in swoft, such as Aop and so on.
Official website address: https://www.swoft.org/
Precautions for using the Swoft framework
Because Swoft is based on Swoole, it is compatible with Ordinary PHP frameworks are still very different, and some need to be paid attention to.
1. Do not execute sleep() and other sleep functions in the code, as this will cause the entire process to block.
2. Do not use the exit/die function, which will cause the worker process to exit directly.
3. Process isolation needs to be noted. When the value of a global variable is modified, it will not take effect because the memory space of global variables is isolated in different processes. Using the Swoft framework requires understanding of process isolation issues. PHP variables are not shared between different processes, even if they are global variables. If different processes need to share data, you can use tools such as Redis, Mysql, message queue, file, Swoole/Table, APCu (php's own cache extension), shmget (process communication (IPC) shared memory) and other tools. At the same time, the file handles of different processes are also isolated, so the files opened by the Socker connection created in process A are invalid in process B.
4. Process cloning. When the server starts, the main process will clone the current process state. From then on, the data in the process will be independent of each other and will not affect each other.
5. Don’t write a base class in the controller to write public variables. This will cause data pollution. When the next request comes in, this variable will still be requested. Because it is resident in memory and has simple interest, it will not be released. .
The official documentation also has hints

Swoft FrameworkInstallation
Installation environment requirements:
1. The gcc version is greater than or equal to 4.8.
2. PHP version is greater than 7.1.
3. Composer package management tool.
4. Install the Redis asynchronous client hiredis, which is already built-in after the latest version of Swoole4.2.6 and does not need to be installed.
5. Swoole extension, this is necessary.
6. Link the iterator dependent library pcre.
7. Swoole needs to enable coroutines and asynchronous redis.
Installation
git clone https://github.com/swoft-cloud/swoft cd swoft composer install cp .env.example .env #编辑 .env 文件,根据需要调整相关环境配置
If the following error occurs, it means that the redis extension is not available, because swoft requires the redis extension.

Of course it will be easier to use docker. Execute the following command
docker run -p 18306:18306 --name swoft swoft/swoft

Enter http:/ in the browser /127.0.0.1:18306 can open the Swoft local page.
Close and start the running command docker start/stop swoft
Swoft directory and file description
Enter the container to view the swoft directory

root@880c142615c3:/var/www/swoft# tree -L 2 . |-- CONTRIBUTING.md |-- Dockerfile |-- LICENSE |-- README.md |-- README.zh-CN.md |-- app #应用目录 | |-- Annotation #定义注解相关目录| |-- Application.php | |-- Aspect | |-- AutoLoader.php | |-- Common | |-- Console | |-- Exception | |-- Helper #助手函数目录 | |-- Http | |-- Listener #事件监听器目录| |-- Migration | |-- Model #模型、逻辑等代码目录| |-- Process | |-- Rpc #RPC服务代码目录| |-- Task #任务投递管理目录,这里可以做异步任务或者定时器的工作 | |-- Tcp | |-- Validator | |-- WebSocket #WebSocket服务代码目录| `-- bean.php |-- bin | |-- bootstrap.php | `-- swoft #Swoft入口文件|-- composer.cn.json |-- composer.json |-- composer.lock |-- config | |-- base.php | |-- db.php | `-- dev |-- database | |-- AutoLoader.php | `-- Migration |-- dev.composer.json |-- docker-compose.yml |-- phpstan.neon.dist |-- phpunit.xml |-- public | |-- favicon.ico | `-- image |-- resource #应用资源目录| |-- language | `-- views |-- runtime #临时文件目录(日志、上传文件、文件缓存等)| |-- logs | |-- sessions | |-- swoft.command | `-- swoft.pid |-- test #单元测试目录 | |-- apitest | |-- bootstrap.php | |-- run.php | |-- testing | `-- unit `-- vendor |-- autoload.php |-- bin |-- composer |-- doctrine |-- monolog |-- myclabs |-- nikic |-- phar-io |-- php-di |-- phpdocumentor |-- phpoption |-- phpspec |-- phpunit |-- psr |-- sebastian |-- swoft |-- symfony |-- text |-- theseer |-- toolkit |-- vlucas `-- webmozart

SwoftBean container
The Bean container is the core of Swoft. Each Bean is an instance of a class object. A container is a factory to store and manage Beans. When HttpServer starts, it will scan classes with @Bean annotations. Traditional PHP does not have resident memory. Each request will re-initialize various resources, and each object must be re-instantiated to apply for memory. After the request is processed, it will be consumed again, which is a waste of resources. Swoft will instantiate these objects and store them in memory after HttpServer is started. They will be taken out and used directly on the next request, reducing the consumption of object creation resources.
The bottom layer of the Bean container is a BeanFactory management container (Container).
Swoft Annotations Mechanism
Annotations are the basis for many important functions in Swoft, especially AOP and IoC containers. Friends who are familiar with Java should know more about annotations.
So what do annotations look like? The following is part of Swoft's code . has annotations in the comment section above the class, method or member variable.

namespace App\Tcp\Controller; use App\Tcp\Middleware\DemoMiddleware; use Swoft\Tcp\Server\Annotation\Mapping\TcpController; use Swoft\Tcp\Server\Annotation\Mapping\TcpMapping; use Swoft\Tcp\Server\Request; use Swoft\Tcp\Server\Response; use function strrev; /** * Class DemoController * * @TcpController(middlewares={DemoMiddleware::class}) #这个就是注解 */ class DemoController { /** * @TcpMapping("list", root=true) * @param Response $response */ public function list(Response $response): void { $response->setData('[list]allow command: list, echo, demo.echo'); }

注解是什么呢?有什么作用呢?
注解其实是通过反射把注释当成代码的一部分,PHP可以通过ReflectionClass来获取一个类的信息,从而了解类里的信息,比如获取类中的所有方法、成员变量,并包括私有方法等,并根据这些信息实现一些操作。像很多PHP框架,比如laravel框架就利用PHP的反射机制来实现依赖注入。
其实注解是配置的另一种方式,这里注解就可以起到一个配置作用。比如定义路由,定义配置定时任务,权限控制等。
在Swoft中要是使用注解,需引入相关注解(Annotation)类,且必须以 /**
开始并以 */
结束,否则会导致无法解析!
Aop切面编程
Aop介绍
1. Aspect(切面):通常是一个类,里面可以定义切入点和通知。
2. JointPoint(连接点):程序执行过程中明确的点,一般是方法的调用。
3. Advice(通知):Aop在特定的切入点执行的增强处理,有before,after,afterReturning,afterThrowing,around。
4. Pointcut(切入点):就是嗲有通知的连接点,在程序中主要体现为书写切入点表达式。
Swoft新版的Aop设计建立在PHP Parser上面。
PHP-Parser的项目主页是:https://github.com/nikic/PHP-Parser
推荐教程:《php教程》
The above is the detailed content of PHP microservice coroutine framework Swoft. For more information, please follow other related articles on the PHP Chinese website!

在PHP应用中,我们有时需要使用当前日期作为文件名来保存或上传文件。虽然可以手动输入日期,但使用当前日期作为文件名可以更方便、快捷和准确。在PHP中,我们可以使用date()函数来获取当前日期。该函数的使用方法为:date(format,timestamp);其中,format为日期格式字符串,timestamp为表示日期和时间的时间戳,不传递该参数将使用

教程:使用FirebaseCloudMessaging在PHP应用中实现定时消息推送功能概述FirebaseCloudMessaging(FCM)是谷歌提供的一种免费的消息推送服务,它能够帮助开发者向Android、iOS和Web应用发送实时消息。本教程将带领大家通过PHP应用使用FCM实现定时消息推送功能。步骤一:创建Firebase项目首先,在F

一、什么是泛型编程泛型编程是指在编程语言中实现一种通用的数据类型,使得这种数据类型能够适用于不同的数据类型,从而实现代码的复用和高效。PHP是一种动态类型语言,不像C++、Java等语言有强类型机制,因此在PHP中实现泛型编程不是一件容易的事情。二、PHP中的泛型编程方式PHP中有两种方式实现泛型编程:分别是使用接口和使用Trait。使用接口在PHP中创建一

Redis是一个高性能的key-value存储系统,它支持多种数据结构,其中包括字符串、哈希表、列表、集合、有序集合等。同时,Redis也支持对字符串数据进行正则表达式的匹配和替换操作,这使得它在开发PHP应用中具有很大的灵活性和便捷性。在PHP应用中使用Redis进行正则表达式操作,需要先安装好phpredis扩展,该扩展提供了与Redis服务器进行通信的

Redis在PHP应用中的操作日志在PHP应用中,使用Redis作为缓存或存储数据的方案已经变得越来越普遍了。Redis是一种高性能的键值存储数据库,具有快速、可扩展、高可用、数据结构多样等特点。在使用Redis时,为了更好地了解应用程序的运行情况,同时为了数据的安全性,我们需要有一份Redis操作日志。Redis操作日志能够记录Redis服务器上所有客户端

随着互联网技术的不断发展,搜索引擎的应用越来越广泛。在互联网的背景下,搜索引擎已成为用户获取信息的主要途径之一。而在此过程中,全文搜索技术起到了至关重要的作用。全文搜索通过对文本内容的建立索引,在用户查询时快速定位到匹配的文本。在PHP应用中实现全文搜索,有很多的方案,而本文将重点介绍Redis在PHP应用中的全文搜索。Redis是一个高性能的非关系型内存

在Web开发领域,Redis是一个非常流行的键值存储数据库,而PHP是一种广泛使用的Web编程语言。Redis提供了许多功能,其中一个非常有用的功能是Bitmap操作。Bitmap是Redis中的一种数据结构,它可以轻松地实现各种位图操作。本文旨在介绍Redis中的Bitmap操作,并演示如何在PHP中使用这些操作。什么是Bitmap?Bitmap是一种数据

如何使用极光推送扩展,在PHP应用中实现自定义消息推送样式和声音引言:在移动应用开发中,消息推送是必不可少的功能之一。极光推送作为目前较为常用的推送平台之一,提供了丰富的功能来满足开发者的需求。本文将介绍如何使用极光推送扩展,在PHP应用中实现自定义消息推送样式和声音的功能。一、了解极光推送扩展极光推送扩展(JPush)是一款基于PHP语言开发的推送SDK,


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
