PageCache except check

This commit is contained in:
斟酌 鵬兄 2016-10-15 11:28:55 +08:00
parent 96c9d608c2
commit 16618e5165
3 changed files with 30 additions and 6 deletions

View File

@ -1,9 +1,9 @@
"use strict"; "use strict";
var cl = global.botanLoader; const cl = global.botanLoader;
var Dragonfly = global.Dragonfly; const Dragonfly = global.Dragonfly;
var Cookie = cl.load( "botanss.net.components.Cookie" ); const Cookie = cl.load( "botanss.net.components.Cookie" );
class CResponse class CResponse
{ {
@ -22,7 +22,6 @@ class CResponse
this.cookie = new Cookie( "", Http ); this.cookie = new Cookie( "", Http );
} }
end() end()
{ {
if( this.canExit ) if( this.canExit )

View File

@ -16,6 +16,7 @@ class WebFrame
this.HTTP = Http; this.HTTP = Http;
this.result = 0; this.result = 0;
this.planted = false; this.planted = false;
this.allowCache = true;
this.requestStr = ""; this.requestStr = "";
this.requestObj = {}; this.requestObj = {};
@ -138,7 +139,7 @@ class WebFrame
__storeCache( cache, ttl ) __storeCache( cache, ttl )
{ {
if( cache && PageCache ) if( this.allowCache && cache && PageCache )
{ {
if( ttl == undefined ) ttl = 30; if( ttl == undefined ) ttl = 30;
PageCache.store( PageCache.store(

View File

@ -3,11 +3,15 @@
const Dragonfly = global.Dragonfly; const Dragonfly = global.Dragonfly;
const cl = global.botanLoader; const cl = global.botanLoader;
const Cookie = cl.load( "botanss.net.components.Cookie" );
class PageCache class PageCache
{ {
constructor() constructor()
{ {
this.cache = { }; this.cache = {};
this.excepts = {};
setInterval( () => { setInterval( () => {
var d = new Date().getTime(); var d = new Date().getTime();
for( var i in this.cache ) for( var i in this.cache )
@ -15,6 +19,12 @@ class PageCache
var c = this.cache[ i ]; var c = this.cache[ i ];
if( c.ttl < d ) delete this.cache[ i ]; if( c.ttl < d ) delete this.cache[ i ];
} }
for( var i in this.excepts )
{
var c = this.excepts[ i ];
if( c.ttl < d ) delete this.excepts[ i ];
}
}, 30000 ); }, 30000 );
} }
@ -38,8 +48,22 @@ class PageCache
Dragonfly.Debug( "StoreCache: \"" + key + "\", expire " + new Date( expires ) ); Dragonfly.Debug( "StoreCache: \"" + key + "\", expire " + new Date( expires ) );
} }
except( sid, ttl )
{
if( !global.pagecache ) return;
var expires = new Date().getTime() + 1000 * ttl;
this.excepts[ sid ] = { ttl: expires };
Dragonfly.Debug( "CacheExcept: \"" + sid.substr( 0, 8 ) + "\", expire " + new Date( expires ) );
}
process( req, res ) process( req, res )
{ {
var cookie = new Cookie( req.headers.cookie );
if( cookie.get( "sid" ) in this.excepts ) return false;
var url = req.url; var url = req.url;
if( url in this.cache ) if( url in this.cache )
{ {