Table of Contents
回复内容:
Home Backend Development PHP Tutorial ajax长轮询阻塞其他请求?

ajax长轮询阻塞其他请求?

Jun 17, 2016 am 08:32 AM
ajax iframe sleep

为了到底消息及时推送,选择使用ajax长轮询,按照网上各种资料讲的,在页面载入的时候就发起一个ajax请求,然后再服务器端hold住,sleep(1):每隔1秒就查询一下数据表里面的计数值是否大于之前的值(初始值为0),如果大于之前的值说明有新消息就返回计数值提示有多少条信息,然后发起新的请求。否则当运行超过60秒也返回一条信息,还是发起新的请求。但是这样会面临这样的问题,如果你在挂起这条请求的同时,又需要发起其他的请求,那么这些请求就被依次阻塞了,必须要等挂起的请求结束才可以进行被阻塞的请求,这样显然不是我想要的结果。我也看了webqq,它好像是采用了iframe但是我真心的不知道到底改怎么用iframe解决请求的阻塞的问题,请大家不吝赐教。若能避免使用“推拉模式”、“反向ajax”之类的大概念则更好。

回复内容:

阻塞的问题我遇到过,通过排查和查阅资料得到原因如下:
原因:为了安全考虑(避免单个用户并发请求导致的session数据错乱),PHP采用排它锁来互斥的访问session数据(不管你是用session文件还是memcache存session),也就是说开启了session后,单个用户只能串行的访问这个站点,并发的请求只有一个会被立刻响应,其它都会被阻塞。
解决办法:
  1. 不用session
  2. [推荐]及时用 session_write_close() 函数保存session(此函数会释放session数据的排它锁)
  3. [不推荐]自己模拟session。不调用session_start(此函数会锁住session数据)通过cookie获得session_id,然后获取session数据。通过session_decode/encode编解码session数据保存等
再说一下楼主的实时推送需求,这个我也做过:
不要用ajax,因为比较耗费服务器资源,实时性也得不到很好的保证。
我用的是WebSocket(HTML5/Flash)+PHP Socket 服务器(workerman 一个高性能的PHP Socket 服务器框架)
这个方案实时性高,并且消耗资源非常低,多浏览器支持。
DEMO:
发送消息的后台页面:Web消息推送器
实时接收消息的页面:Web消息接受页面
代码地址:walkor/web-msg-sender · GitHub
还有个PHP+WebSocket聊天室也是类似的原理:workerman-chat
安装使用就两步(workerman不依赖apache、nginx、php-fpm等容器就可以直接运行。不支持Win):
1、下载代码
2、运行./bin/workermand start
一切ok
发消息后台:http://ip:3333
接受消息页面:http://ip:3333/web-msg-sender.html 会有人愿意在各种"不行","不要",近乎被侮辱的情况下帮你解决这么具体的技术问题吗? 这个是由于session被占用导致的,让长轮循不再操作session。用session_write_close()的函数可以解决你的问题。 为何不用comet 如何解决,我将php逻辑代码全部去除了,只在接口的for循环十次里sleep(1),但还是存在ajax等待循环ajax执行完成在执行

答案:session_write_close 好像是ajax请求同一个域名,一次限制只能发送2个请求,用iframe可以跨子域发请求,突破这个限制,具体可以参考 blog.zhaojie.me/2007/02 谢谢,我是一名前端,php懂得少,刚好遇到这个问题,感谢大牛~~~~
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the 403 error encountered by jQuery AJAX request How to solve the 403 error encountered by jQuery AJAX request Feb 20, 2024 am 10:07 AM

Title: Methods and code examples to resolve 403 errors in jQuery AJAX requests. The 403 error refers to a request that the server prohibits access to a resource. This error usually occurs because the request lacks permissions or is rejected by the server. When making jQueryAJAX requests, you sometimes encounter this situation. This article will introduce how to solve this problem and provide code examples. Solution: Check permissions: First ensure that the requested URL address is correct and verify that you have sufficient permissions to access the resource.

How to solve jQuery AJAX request 403 error How to solve jQuery AJAX request 403 error Feb 19, 2024 pm 05:55 PM

jQuery is a popular JavaScript library used to simplify client-side development. AJAX is a technology that sends asynchronous requests and interacts with the server without reloading the entire web page. However, when using jQuery to make AJAX requests, you sometimes encounter 403 errors. 403 errors are usually server-denied access errors, possibly due to security policy or permission issues. In this article, we will discuss how to resolve jQueryAJAX request encountering 403 error

Monitor iframe scrolling behavior Monitor iframe scrolling behavior Feb 18, 2024 pm 08:40 PM

How to monitor the scrolling of an iframe requires specific code examples. When we use the iframe tag to embed other web pages in a web page, sometimes we need to perform some specific operations on the content in the iframe. One of the common needs is to listen for the scroll event of the iframe so that the corresponding code can be executed when the scroll occurs. The following will introduce how to use JavaScript to monitor the scrolling of an iframe, and provide specific code examples for reference. Get the iframe element First, we need

How to get variables from PHP method using Ajax? How to get variables from PHP method using Ajax? Mar 09, 2024 pm 05:36 PM

Using Ajax to obtain variables from PHP methods is a common scenario in web development. Through Ajax, the page can be dynamically obtained without refreshing the data. In this article, we will introduce how to use Ajax to get variables from PHP methods, and provide specific code examples. First, we need to write a PHP file to handle the Ajax request and return the required variables. Here is sample code for a simple PHP file getData.php:

How to solve the problem of jQuery AJAX error 403? How to solve the problem of jQuery AJAX error 403? Feb 23, 2024 pm 04:27 PM

How to solve the problem of jQueryAJAX error 403? When developing web applications, jQuery is often used to send asynchronous requests. However, sometimes you may encounter error code 403 when using jQueryAJAX, indicating that access is forbidden by the server. This is usually caused by server-side security settings, but there are ways to work around it. This article will introduce how to solve the problem of jQueryAJAX error 403 and provide specific code examples. 1. to make

PHP vs. Ajax: Solutions for creating dynamically loaded content PHP vs. Ajax: Solutions for creating dynamically loaded content Jun 06, 2024 pm 01:12 PM

Ajax (Asynchronous JavaScript and XML) allows adding dynamic content without reloading the page. Using PHP and Ajax, you can dynamically load a product list: HTML creates a page with a container element, and the Ajax request adds the data to that element after loading it. JavaScript uses Ajax to send a request to the server through XMLHttpRequest to obtain product data in JSON format from the server. PHP uses MySQL to query product data from the database and encode it into JSON format. JavaScript parses the JSON data and displays it in the page container. Clicking the button triggers an Ajax request to load the product list.

PHP and Ajax: Building an autocomplete suggestion engine PHP and Ajax: Building an autocomplete suggestion engine Jun 02, 2024 pm 08:39 PM

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.

Understanding Ajax Frameworks: Explore Five Common Frameworks Understanding Ajax Frameworks: Explore Five Common Frameworks Jan 26, 2024 am 09:28 AM

Understanding the Ajax Framework: Explore five common frameworks, requiring specific code examples Introduction: Ajax is one of the essential technologies in modern web application development. It has become an indispensable part of front-end development because of its features such as supporting asynchronous data interaction and improving user experience. In order to better understand and master the Ajax framework, this article will introduce five common Ajax frameworks and provide specific code examples to help readers gain an in-depth understanding of the usage and advantages of these frameworks. 1. jQuery jQuery is currently the most

See all articles