search
HomePHP FrameworkWorkermanSeveral issues that worker developers must know

The following tutorial column of workerman will introduce to you several issues that workerman developers must know. I hope it will be helpful to friends in need!

Several issues that worker developers must know

1. Workerman does not rely on apache or nginx

workerman itself is already a container similar to apache/nginx. As long as the PHP environment is OK, workerman can run.

2. Workerman is started from the command line.

The startup method is similar to apache using the command (workerman cannot be used in general web spaces). The startup interface is similar to the following

Several issues that worker developers must know

3. A heartbeat must be added for a long connection

A heartbeat must be added for a long connection. A heartbeat must be added for a long connection. Long connections must add heartbeats, and say important things three times.

Long connections without communication for a long time will definitely be killed by the firewall and disconnected. The long-term connection application without heartbeat is just waiting for the boss to KO you.

4. The client and server protocols must correspond to communicate.

This is a very common problem among developers. For example, if the client uses the websocket protocol, the server must also use the websocket protocol (server new Worker('websocket://0.0.0.0...')) to be able to connect and communicate.

Do not try to access the websocket protocol port in the browser address bar, and do not try to use the websocket protocol to access the bare tcp protocol port. The protocol must correspond.

The principle here is similar to that if you want to communicate with British people, then use English. If you want to communicate with Japanese people, use Japanese. The language here is similar to the communication agreement. Both parties (client and server) must use the same language to communicate, otherwise communication will not be possible.

5. Possible reasons for connection failure

A very common problem when you first start using Workerman is that the client fails to connect to the server. The reasons are generally as follows:

1. The server firewall (including the cloud server security group) blocks the connection (50% probability is this)

2. The protocols used by the client and the server are inconsistent (30 % chance)

3. The IP or port is written wrong (15% chance)

4. The server is not started

6. Do not use exit die sleep statement

Business execution of the exit die statement will cause the process to exit and display the WORKER EXIT UNEXPECTED error. Of course, when the process exits, a new process will be restarted immediately to continue the service. If you need to return, you can call return. The sleep statement will cause the process to sleep. No business will be performed during the sleep process, and the framework will also stop running, resulting in all client requests of the process being unable to be processed.

7. Do not have an infinite loop in the business code

Do not have an infinite loop in the business code, otherwise the control will not be returned to the worker framework, resulting in the inability to receive processing Other client messages.

8. Restart Workerman when changing the code

Workerman is a memory-resident framework. When changing the code, you need to restart Workerman to see the effect of the new code.

9. It is recommended to use the GatewayWorker framework for long-term connection applications

Many developers use workererman to develop long-term connection applications, such as instant messaging, Internet of Things, etc., long-term connection applications It is recommended to use the GatewayWorker framework directly, which is specially encapsulated on the basis of workerman to make it simpler and easier to use as a long-connection application backend.

10. Support higher concurrency

If the number of concurrent business connections exceeds 1,000 and is online at the same time, be sure to optimize the Linux kernel and install the event extension or libevent extension.

For more workerman tutorials, please pay attention to the workerman tutorial column.

The above is the detailed content of Several issues that worker developers must know. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:workerman. If there is any infringement, please contact admin@php.cn delete
workerman和swoole性能谁更好?如何选择?workerman和swoole性能谁更好?如何选择?Dec 01, 2022 am 10:00 AM

workerman 对比 swoole 实际开发项目中,你会选择哪个?对于新手学哪个较好,有什么建议吗?

如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功能如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功能Jul 17, 2023 am 10:21 AM

如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功能随着移动游戏的兴起,跨平台游戏联机功能成为游戏开发者关注的焦点之一。PHP作为一种广泛应用于Web开发的语言,而Unity3D作为一款强大的跨平台游戏引擎,如何实现二者之间的联机功能成为了开发者们思考的问题。本文将介绍如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功

如何利用PHP和Unity3D开发基于Workerman的实时多人游戏如何利用PHP和Unity3D开发基于Workerman的实时多人游戏Jul 18, 2023 am 09:54 AM

如何利用PHP和Unity3D开发基于Workerman的实时多人游戏随着游戏行业的不断发展,实时多人游戏成为了一种趋势。而PHP作为一种广泛使用的服务器端脚本语言和Unity3D作为一种流行的游戏开发引擎,如果能够结合起来开发实时多人游戏,将会带来更加丰富的玩法和用户体验。本文将详细介绍如何利用PHP和Unity3D开发基于Workerman的实时多人游戏

PHP和Unity3D如何利用Workerman实现服务器端推送功能PHP和Unity3D如何利用Workerman实现服务器端推送功能Jul 18, 2023 pm 12:01 PM

PHP和Unity3D如何利用Workerman实现服务器端推送功能在现代的网络应用中,服务器端推送功能(ServerPush)显示了它的强大威力。它可以实时地将信息推送给客户端,而无需客户端不停地向服务器发起请求。在本文中,我们将讨论如何使用PHP和Unity3D结合使用Workerman框架来实现服务器端推送功能。Workerman是一个使用纯PHP编

如何使用Workerman实现PHP和Unity3D的数据统计和分析功能如何使用Workerman实现PHP和Unity3D的数据统计和分析功能Jul 16, 2023 pm 11:43 PM

如何使用Workerman实现PHP和Unity3D的数据统计和分析功能引言:随着互联网的快速发展,数据统计和分析变得愈发重要。在PHP和Unity3D开发过程中,我们经常需要收集和分析用户的行为数据,以便进行产品改进和决策制定。本文将介绍如何使用Workerman这个高性能的PHP开发框架实现PHP和Unity3D之间的数据统计和分析功能。一、Worker

如何使用Workerman实现PHP和Unity3D的多人在线拼图游戏如何使用Workerman实现PHP和Unity3D的多人在线拼图游戏Jul 17, 2023 pm 10:55 PM

如何使用Workerman实现PHP和Unity3D的多人在线拼图游戏概述:多人在线游戏一直是游戏开发领域的一个热门话题,而拼图游戏作为一种简单、有趣的休闲游戏,也在线上游戏中广受欢迎。本文将介绍如何使用Workerman搭建服务器,并使用PHP和Unity3D开发一个简单的多人在线拼图游戏,实现实时的游戏互动。搭建服务器首先,我们需要搭建一个服务器来提供网

如何使用Workerman实现PHP和Unity3D的多人协同编辑功能如何使用Workerman实现PHP和Unity3D的多人协同编辑功能Jul 17, 2023 pm 04:03 PM

如何使用Workerman实现PHP和Unity3D的多人协同编辑功能引言:在现如今的互联网时代,多人协同编辑已经成为一个非常重要和常见的功能需求。无论是团队合作中的文档编辑,还是多人在线游戏中的场景编辑,都需要实现多人同时编辑同一个文件或场景的功能。本文将介绍如何使用Workerman框架实现PHP和Unity3D的多人协同编辑功能,并提供代码示例。一、什

PHP和Unity3D如何结合使用Workerman打造高效的网络通信系统PHP和Unity3D如何结合使用Workerman打造高效的网络通信系统Jul 18, 2023 am 11:27 AM

PHP和Unity3D是两个不同的开发环境,一个用于服务器端开发,一个用于游戏客户端开发。它们本身有不同的特点和用途,但是通过使用Workerman,我们可以将它们结合起来,打造一个高效的网络通信系统。本文将探讨如何使用Workerman实现PHP和Unity3D的结合,并附上代码示例。首先,我们需要了解一下Workerman。Workerman是一款基于P

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor