作家
登录

用ASP开"多线程"

作者: 来源:www.28hudong.com 2013-03-30 09:06:57 阅读 我要评论

在网上找到一个用ASP开的假线程,发现和我以前做的一个程序不谋而合,只不过以前用的是VB,摘下来,储备. 1.原理实验 原理当然都一样,利用web服务器支持多线程,在同一页面里向服务器发多个http请求来完成我们的工作。还是先实验一下,在一个页面里同时写2个txt文件,比较写入时间的差异。代码如下: <% startime=timer()''----------asp实现多线程----------''function runThread()dim Httpset Http=Server.createobject("Msxml2.XMLHTTP") Http.open "GET","http://127.0.0.1/thread.asp?action=b",falseHttp.send() end functionfunction a()dim Content,FilePath,MyFileContent=now()&chr(30)&timer()FilePath=server.MapPath("a.txt")Set fso = CreateObject("Scripting.FileSystemObject")Set MyFile = fso.CreateTextFile(FilePath, True)MyFile.Write(Content)MyFile.Closeend functionfunction b()dim Content,FilePath,MyFileContent=now()&chr(30)&timer()FilePath=server.MapPath("b.txt")Set fso = CreateObject("Scripting.FileSystemObject")Set MyFile = fso.CreateTextFile(FilePath, True)MyFile.Write(Content)MyFile.Closeend functionif(Request.QueryString("action")="") thenrunThread()a()elseb()end if%> Script Execution Time:<%=fix((timer()-startime)*1000)%>ms 运行后的结果显示: a文件和b文件中的时间是基本相同的。 2.实际应用比较 比如我同时抓取2个页面的html代码,一个sohu首页,一个是sina首页,用2种方式:一个是常规的顺序的代码执行,单线程执行,一个是这里的多线程执行,比较页面完成时间,代码如下: testspeed1.asp: <%startime=timer()function getHTTPPage(url) on error resume next dim http set http=Server.createobject("Msxml2.XMLHTTP") Http.open "POST",url,falseHttp.send() if Http.readystate<>4 then exit function getHTTPPage=bytes2BSTR(Http.responseBody) contents = getHTTPPageResponse.Write "<xmp>"Response.Write(contents)Response.Write "</xmp>"set http=nothingif err.number<>0 then err.Clear end function Function bytes2BSTR(vIn) dim strReturn dim i,ThisCharCode,NextCharCode strReturn = "" For i = 1 To LenB(vIn) ThisCharCode = AscB(MidB(vIn,i,1)) If ThisCharCode < &H80 Then strReturn = strReturn & Chr(ThisCharCode) Else NextCharCode = AscB(MidB(vIn,i+1,1)) strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode)) i = i + 1 End If Next bytes2BSTR = strReturn End Function getHTTPPage("http://www.sohu.com/")getHTTPPage("http://www.sina.com.cn/")%> Script Execution Time:<%=fix((timer()-startime)*1000)%>ms Testspeed2.asp: <%startime=timer()function getHTTPPage(url) on error resume next dim http set http=Server.createobject("Msxml2.XMLHTTP") Http.open "POST",url,falseHttp.send() if Http.readystate<>4 then exit function getHTTPPage=bytes2BSTR(Http.responseBody) contents = getHTTPPageResponse.Write "<xmp>"Response.Write(contents)Response.Write "</xmp>"set http=nothingif err.number<>0 then err.Clear end function Function bytes2BSTR(vIn) dim strReturn dim i,ThisCharCode,NextCharCode strReturn = "" For i = 1 To LenB(vIn) ThisCharCode = AscB(MidB(vIn,i,1)) If ThisCharCode < &H80 Then strReturn = strReturn & Chr(ThisCharCode) Else NextCharCode = AscB(MidB(vIn,i+1,1)) strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode)) i = i + 1 End If Next bytes2BSTR = strReturn End Function function runThread()dim Httpset Http=Server.createobject("Msxml2.XMLHTTP") Http.open "GET","http://127.0.0.1/thread.asp?action=b",falseHttp.send() end functionfunction a()getHTTPPage("http://www.sohu.com/")end functionfunction b()getHTTPPage("http://www.sina.com.cn/")end functionif(Request.QueryString("action")="") thenrunThread()a()elseb()end if%> Script Execution Time:<%=fix((timer()-startime)*1000)%>ms 运行的时间结果: 次数 Testspeed1运行时间ms Testspeed2.asp运行时间ms 1 15593 13078 2 13343 14375 3 12828 12515 4 12437 12125 5 12109 11734 6 12281 12140 7 12703 12062 8 13468 12656 9 12328 12187 10 12343 12156 以上10次是一个页面完后另一个页面再执行的。谁先谁后也是任意的。有一条记录异常。 为了避免网络的原因,以下5次将测试地址改成本机http://127.0.0.1 11 109 46 12 62 46 13 62 48 14 78 64 15 62 46 以上5次是一个页面完后另一个页面再执行的。谁先谁后也是任意的。 结果:好象是要快一点哦。。。。。。。。。。。

  推荐阅读

  如何查询日期类型的数据?

请问,如何在ACCESS数据库和SQL SERVER数据库中查询? 我们可用下述方法来实现: 一、在ACCESS数据库中: "SELECT * FROM yourTable where dateField=#2001/4/15#"(注意:日期须加#号)。  二、在SQL SE>>>详细阅读


本文标题:用ASP开"多线程"

地址:http://www.17bianji.com/kaifa2/ASP/33299.html

关键词: 探索发现

乐购科技部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与乐购科技进行文章共享合作。

网友点评
自媒体专栏

评论

热度

精彩导读
栏目ID=71的表不存在(操作类型=0)