当前位置:编程学习 > asp >>

以前收集的一些资料---(一种新思路)使用一个“静态”的ASP页面来改进你的服务器的性能

答案:使用一个“静态”的ASP页面来改进你的服务器的性能
通常大家显示一个数据库中的信息时都是使用动态页面来生成的,
这对于一个小网站或者当数据库内的容量不大时,系统的性能并没有什么影响。
但是当用户要频繁地访问一个数据量很大的库时,系统是不是还能够承受得了了。
下面介绍一种“静态”ASP技术来解决这个问题。
例如现在这个有一个人员资料库,结构如下:
ID    First     Last         Company      Email       Phone
常规的办法如下:
contact.asp
                           <table cellspacing=0 cellpadding=0>
                           <%
                              set query = getdb.execute("select * from contacts order by firstname, lastname")
                              do while not query.eof

                                 response.write "<tr><td><a href=>                                 response.write "detail.asp?id=" & query("id")
                                 response.write """>" & query("first") & " " & query("last")
                                 response.write "</a></td></tr>"         
                                 query.movenext

                              loop
                              query.close
                              set query = nothing
                           %>
                           </table>

detail.asp
                           <table cellspacing=0 cellpadding=0>
                           <%
                              set query = getdb.e xecute("select * from contacts where id=" & request("id"))
                              if not query.eof then

                                 response.write "<tr>"
                                 response.write "<td>Name: </td><td>" & query("first") & " " & query("last") & "</td>"
                                 response.write "<td>Company: </td><td>" & query("company") & "</td>"
                                 response.write "<td>E-mail: </td><td>" & query("email") & "</td>"
                                 response.write "<td>Phone: </td><td>" & query("phone") & "</td>"
                                 response.write "</tr>"

                                 query.movenext

                              end if
                              query.close
                              set query = nothing
                           %>
                           </table>

我想大家对上面的代码应该是不会有什么疑问的,显然它存在我上面提出的那个问题。
就是当每次显示一个人的详细资料时,都会读取数据库。
现在我提出的这个想法其实很简单,就是使用一个“静态”的ASP页面来代替读取数据库
的操作。
调用格式如下:
"Contact" & ID & ".asp"
例如我想读取id为27的人的信息,我就不用去查取数据库了,

上一个:asp内存和速度优化,第一部分(英文版)
下一个:服务器性能和可伸缩性杀手(转1)

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,