asp提高首頁(yè)性能的一個(gè)技巧
簡(jiǎn)單介紹:一般一個(gè)網(wǎng)站的首頁(yè)訪問量是最大的,如果您的網(wǎng)站的首頁(yè)打開的非常緩慢,您的客戶將會(huì)陸續(xù)離開你的網(wǎng)站.通常我們把需要經(jīng)過復(fù)雜運(yùn)算或者查詢數(shù)據(jù)庫(kù)得出的數(shù)據(jù)緩存起來或者生成靜態(tài)網(wǎng)頁(yè)來提高web應(yīng)用的性能,這次我們直接把首頁(yè)的輸出緩存成一個(gè)字符串,然后定時(shí)更新,即照顧了性能,又不影響首頁(yè)的時(shí)效性.這里用到了一些vbs自定義類,application對(duì)象,xmlhttp對(duì)象,adodb.stream對(duì)象的一些東西,相關(guān)知識(shí)大家可以查資料了解.
最好讓這個(gè)頁(yè)和你要緩存的頁(yè)在一個(gè)目錄下,要不有些相對(duì)路徑的圖片就無法顯示了,另外緩存有的頁(yè)面會(huì)出現(xiàn)亂碼,我還不知道怎么解決這個(gè)問題呢,可能在response的時(shí)候需要設(shè)置一下編碼類型,大家可以試試
<%
dim wawa,startime,endtime
startime=timer()
set wawa=new cls_cache
wawa.reloadtime=0.5
wawa.cachename="wawa"
wawa.name="xmlinfoindex"
if wawa.objisempty() then cachexmlinfoindex()
response.write wawa.value
endtime=timer()
response.write "
執(zhí)行時(shí)間:" & formatnumber((endtime-startime)*1000,5) & "毫秒。"
sub cachexmlinfoindex()
dim bodytext, xml
set xml = server.createobject("microsoft.xmlhttp")
'把下面的地址替換成你的首頁(yè)的文件地址,一定要用http://開頭的絕對(duì)路徑,不能寫相對(duì)路徑
xml.open "get", "http://onlytiancai/bak/vote/infoindex.asp", false
xml.send
bodytext=xml.responsebody
bodytext=bytestobstr(bodytext,"gb2312")
wawa.value=bodytext
set xml = nothing
end sub
function bytestobstr(body,cset)
dim objstream
set objstream = server.createobject("adodb.stream")
objstream.type = 1
objstream.mode =3
objstream.open
objstream.write body
objstream.position = 0
objstream.type = 2
objstream.charset = cset
bytestobstr = objstream.readtext
objstream.close
set objstream = nothing
end function
%>
<%
'下面這個(gè)類可以保存在單獨(dú)的文件里,然后包含到此頁(yè)
class cls_cache
rem ==================使用說明==============================================
rem = 本類模塊是動(dòng)網(wǎng)先鋒原創(chuàng),作者:迷城浪子。如采用本類模塊,請(qǐng)不要去掉這個(gè)說明。這段注釋不會(huì)影響執(zhí)行的速度。=
rem = 作用:緩存和緩存管理類 =
rem = 公有變量:reloadtime 過期時(shí)間(單位為分鐘)缺省值為14400, =
rem = maxcount 緩存對(duì)象的最大值,超過則自動(dòng)刪除使用次數(shù)少的對(duì)象。缺省值為300 =
rem = cachename 緩存組的總名稱,缺省值為"dvbbs",如果一個(gè)站點(diǎn)中有超過一個(gè)緩存組,則需要外部改變這個(gè)值。 =
rem = 屬性:name 定義緩存對(duì)象名稱,只寫屬性。 =
rem = 屬性:value 讀取和寫入緩存數(shù)據(jù)。 =
rem = 函數(shù):objisempty()判斷當(dāng)前緩存是否過期。 =
rem = 方法:delcahe(mycahename)手工刪除一個(gè)緩存對(duì)象,參數(shù)是緩存對(duì)象的名稱。 =
rem ================================================================
public reloadtime,maxcount,cachename
private localcachename,cachedata,delcount
private sub class_initialize()
reloadtime=14400
cachename="dvbbs"
end sub
private sub setcache(setname,newvalue)
application.lock
application(setname) = newvalue
application.unlock
end sub
private sub makeempty(setname)
application.lock
application(setname) = empty
application.unlock
end sub
public property let name(byval vnewvalue)
localcachename=lcase(vnewvalue)
end property
public property let value(byval vnewvalue)
if localcachename<>"" then
cachedata=application(cachename&"_"&localcachename)
if isarray(cachedata) then
cachedata(0)=vnewvalue
cachedata(1)=now()
else
redim cachedata(2)
cachedata(0)=vnewvalue
cachedata(1)=now()
end if
setcache cachename&"_"&localcachename,cachedata
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " please change the cachename."
end if
end property
public property get value()
if localcachename<>"" then
cachedata=application(cachename&"_"&localcachename)
if isarray(cachedata) then
value=cachedata(0)
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " the cachedata is empty."
end if
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " please change the cachename."
end if
end property
public function objisempty()
objisempty=true
cachedata=application(cachename&"_"&localcachename)
if not isarray(cachedata) then exit function
if not isdate(cachedata(1)) then exit function
if datediff("s",cdate(cachedata(1)),now()) < 60*reloadtime then
objisempty=false
end if
end function
public sub delcahe(mycahename)
makeempty(cachename&"_"&mycahename)
end sub
end class
%>
最好讓這個(gè)頁(yè)和你要緩存的頁(yè)在一個(gè)目錄下,要不有些相對(duì)路徑的圖片就無法顯示了,另外緩存有的頁(yè)面會(huì)出現(xiàn)亂碼,我還不知道怎么解決這個(gè)問題呢,可能在response的時(shí)候需要設(shè)置一下編碼類型,大家可以試試
代碼如下:
<%
dim wawa,startime,endtime
startime=timer()
set wawa=new cls_cache
wawa.reloadtime=0.5
wawa.cachename="wawa"
wawa.name="xmlinfoindex"
if wawa.objisempty() then cachexmlinfoindex()
response.write wawa.value
endtime=timer()
response.write "
執(zhí)行時(shí)間:" & formatnumber((endtime-startime)*1000,5) & "毫秒。"
sub cachexmlinfoindex()
dim bodytext, xml
set xml = server.createobject("microsoft.xmlhttp")
'把下面的地址替換成你的首頁(yè)的文件地址,一定要用http://開頭的絕對(duì)路徑,不能寫相對(duì)路徑
xml.open "get", "http://onlytiancai/bak/vote/infoindex.asp", false
xml.send
bodytext=xml.responsebody
bodytext=bytestobstr(bodytext,"gb2312")
wawa.value=bodytext
set xml = nothing
end sub
function bytestobstr(body,cset)
dim objstream
set objstream = server.createobject("adodb.stream")
objstream.type = 1
objstream.mode =3
objstream.open
objstream.write body
objstream.position = 0
objstream.type = 2
objstream.charset = cset
bytestobstr = objstream.readtext
objstream.close
set objstream = nothing
end function
%>
<%
'下面這個(gè)類可以保存在單獨(dú)的文件里,然后包含到此頁(yè)
class cls_cache
rem ==================使用說明==============================================
rem = 本類模塊是動(dòng)網(wǎng)先鋒原創(chuàng),作者:迷城浪子。如采用本類模塊,請(qǐng)不要去掉這個(gè)說明。這段注釋不會(huì)影響執(zhí)行的速度。=
rem = 作用:緩存和緩存管理類 =
rem = 公有變量:reloadtime 過期時(shí)間(單位為分鐘)缺省值為14400, =
rem = maxcount 緩存對(duì)象的最大值,超過則自動(dòng)刪除使用次數(shù)少的對(duì)象。缺省值為300 =
rem = cachename 緩存組的總名稱,缺省值為"dvbbs",如果一個(gè)站點(diǎn)中有超過一個(gè)緩存組,則需要外部改變這個(gè)值。 =
rem = 屬性:name 定義緩存對(duì)象名稱,只寫屬性。 =
rem = 屬性:value 讀取和寫入緩存數(shù)據(jù)。 =
rem = 函數(shù):objisempty()判斷當(dāng)前緩存是否過期。 =
rem = 方法:delcahe(mycahename)手工刪除一個(gè)緩存對(duì)象,參數(shù)是緩存對(duì)象的名稱。 =
rem ================================================================
public reloadtime,maxcount,cachename
private localcachename,cachedata,delcount
private sub class_initialize()
reloadtime=14400
cachename="dvbbs"
end sub
private sub setcache(setname,newvalue)
application.lock
application(setname) = newvalue
application.unlock
end sub
private sub makeempty(setname)
application.lock
application(setname) = empty
application.unlock
end sub
public property let name(byval vnewvalue)
localcachename=lcase(vnewvalue)
end property
public property let value(byval vnewvalue)
if localcachename<>"" then
cachedata=application(cachename&"_"&localcachename)
if isarray(cachedata) then
cachedata(0)=vnewvalue
cachedata(1)=now()
else
redim cachedata(2)
cachedata(0)=vnewvalue
cachedata(1)=now()
end if
setcache cachename&"_"&localcachename,cachedata
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " please change the cachename."
end if
end property
public property get value()
if localcachename<>"" then
cachedata=application(cachename&"_"&localcachename)
if isarray(cachedata) then
value=cachedata(0)
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " the cachedata is empty."
end if
else
err.raise vbobjecterror + 1, "dvbbscacheserver", " please change the cachename."
end if
end property
public function objisempty()
objisempty=true
cachedata=application(cachename&"_"&localcachename)
if not isarray(cachedata) then exit function
if not isdate(cachedata(1)) then exit function
if datediff("s",cdate(cachedata(1)),now()) < 60*reloadtime then
objisempty=false
end if
end function
public sub delcahe(mycahename)
makeempty(cachename&"_"&mycahename)
end sub
end class
%>
相關(guān)文章
- ASP怎么談到應(yīng)用到類的?
- 檢測(cè)函數(shù) asp class
- 遭遇ASP類的事件設(shè)計(jì)
- ASP高亮類
- Object對(duì)象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁(yè)面的分離
- ASP代碼的對(duì)象化
- 一個(gè)asp快速字符串連接類
- 一個(gè)簡(jiǎn)單的asp數(shù)據(jù)庫(kù)操作類
- ASP類編寫詳細(xì)說明
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個(gè)ASP通用分頁(yè)類
- 如何編寫一個(gè)ASP類
- 一個(gè)ACCESS數(shù)據(jù)庫(kù)訪問的類第1/3頁(yè)
- 分頁(yè)類,異常類
- ASP 類 Class入門