1

我正在使用 apache 2.2,我曾尝试运行 2 个线程(并行),但我似乎无法按顺序运行两个线程。

我怎样才能强制它同时(并行)运行?

测试.wsgi::

import time

def application(environ, start_response):

    status = '200 OK'

    output = str(time.time())
    time.sleep(5)
    output += '<br/>' + str(time.time())
    response_headers = [('Content-type', 'text/html; charset=utf-8'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)
    return [output]

我在 httpd.conf 的末尾插入了以下内容:

Include conf/extra/httpd-mpm.conf

<IfModule mpm_winnt_module>
        ThreadsPerChild   253
        MaxRequestsPerChild     0
</IfModule>

<VirtualHost *>
        ServerName localhost    
        WSGIScriptAlias / C:\test\test.wsgi
        <Directory C:\test>
                Order deny,allow
                Allow from all
        </Directory>
</VirtualHost>

我得到了这样的作品,但不是并行的,

第一个线程:1374420108.56 1374420113.56

第二条:1374420113.57 1374420118.57

谢谢

4

1 回答 1

0

问题解决了,这似乎是“测试滥用”,我用同一个浏览器的多个选项卡进行了测试,但不知何故浏览器不能处理这些多个并发请求,所以我用不同的浏览器尝试了它,它正在工作! !

于 2013-07-22T07:24:18.020 回答