asp提高首頁性能的一個技巧
簡單介紹:一般一個網(wǎng)站的首頁訪問量是最大的,如果您的網(wǎng)站的首頁打開的非常緩慢,您的客戶將會陸續(xù)離開你的網(wǎng)站.通常我們把需要經(jīng)過復(fù)雜運算或者查詢數(shù)據(jù)庫得出的數(shù)據(jù)緩存起來或者生成靜態(tài)網(wǎng)頁來提高web應(yīng)用的性能,這次我們直接把首頁的輸出緩存成一個字符串,然后定時更新,即照顧了性能,又不影響首頁的時效性.這里用到了一些vbs自定義類,application對象,xmlhttp對象,adodb.stream對象的一些東西,相關(guān)知識大家可以查資料了解.
最好讓這個頁和你要緩存的頁在一個目錄下,要不有些相對路徑的圖片就無法顯示了,另外緩存有的頁面會出現(xiàn)亂碼,我還不知道怎么解決這個問題呢,可能在response的時候需要設(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í)行時間:" & formatnumber((endtime-startime)*1000,5) & "毫秒。"
sub cachexmlinfoindex()
dim bodytext, xml
set xml = server.createobject("microsoft.xmlhttp")
'把下面的地址替換成你的首頁的文件地址,一定要用http://開頭的絕對路徑,不能寫相對路徑
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
%>
<%
'下面這個類可以保存在單獨的文件里,然后包含到此頁
class cls_cache
rem ==================使用說明==============================================
rem = 本類模塊是動網(wǎng)先鋒原創(chuàng),作者:迷城浪子。如采用本類模塊,請不要去掉這個說明。這段注釋不會影響執(zhí)行的速度。=
rem = 作用:緩存和緩存管理類 =
rem = 公有變量:reloadtime 過期時間(單位為分鐘)缺省值為14400, =
rem = maxcount 緩存對象的最大值,超過則自動刪除使用次數(shù)少的對象。缺省值為300 =
rem = cachename 緩存組的總名稱,缺省值為"dvbbs",如果一個站點中有超過一個緩存組,則需要外部改變這個值。 =
rem = 屬性:name 定義緩存對象名稱,只寫屬性。 =
rem = 屬性:value 讀取和寫入緩存數(shù)據(jù)。 =
rem = 函數(shù):objisempty()判斷當(dāng)前緩存是否過期。 =
rem = 方法:delcahe(mycahename)手工刪除一個緩存對象,參數(shù)是緩存對象的名稱。 =
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
%>
最好讓這個頁和你要緩存的頁在一個目錄下,要不有些相對路徑的圖片就無法顯示了,另外緩存有的頁面會出現(xiàn)亂碼,我還不知道怎么解決這個問題呢,可能在response的時候需要設(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í)行時間:" & formatnumber((endtime-startime)*1000,5) & "毫秒。"
sub cachexmlinfoindex()
dim bodytext, xml
set xml = server.createobject("microsoft.xmlhttp")
'把下面的地址替換成你的首頁的文件地址,一定要用http://開頭的絕對路徑,不能寫相對路徑
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
%>
<%
'下面這個類可以保存在單獨的文件里,然后包含到此頁
class cls_cache
rem ==================使用說明==============================================
rem = 本類模塊是動網(wǎng)先鋒原創(chuàng),作者:迷城浪子。如采用本類模塊,請不要去掉這個說明。這段注釋不會影響執(zhí)行的速度。=
rem = 作用:緩存和緩存管理類 =
rem = 公有變量:reloadtime 過期時間(單位為分鐘)缺省值為14400, =
rem = maxcount 緩存對象的最大值,超過則自動刪除使用次數(shù)少的對象。缺省值為300 =
rem = cachename 緩存組的總名稱,缺省值為"dvbbs",如果一個站點中有超過一個緩存組,則需要外部改變這個值。 =
rem = 屬性:name 定義緩存對象名稱,只寫屬性。 =
rem = 屬性:value 讀取和寫入緩存數(shù)據(jù)。 =
rem = 函數(shù):objisempty()判斷當(dāng)前緩存是否過期。 =
rem = 方法:delcahe(mycahename)手工刪除一個緩存對象,參數(shù)是緩存對象的名稱。 =
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)用到類的?
- 檢測函數(shù) asp class
- 遭遇ASP類的事件設(shè)計
- ASP高亮類
- Object對象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁面的分離
- ASP代碼的對象化
- 一個asp快速字符串連接類
- 一個簡單的asp數(shù)據(jù)庫操作類
- ASP類編寫詳細說明
- 實現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個ASP通用分頁類
- 如何編寫一個ASP類
- 一個ACCESS數(shù)據(jù)庫訪問的類第1/3頁
- 分頁類,異常類
- ASP 類 Class入門