PageCache should writeHeaders

This commit is contained in:
斟酌 鵬兄 2016-10-25 17:52:20 +08:00
parent 3c347df812
commit a7edb55d4c
2 changed files with 10 additions and 5 deletions

View File

@ -59,7 +59,7 @@ class WebFrame
res.statusCode = 301; res.statusCode = 301;
res.headers[ "Location" ] = router.relaying.params[0]; res.headers[ "Location" ] = router.relaying.params[0];
_self.result = ""; _self.result = "";
_self.plantResult(); _self.plantResult( true );
} }
, "302": function() , "302": function()
{ {

View File

@ -35,16 +35,21 @@ class PageCache
var expires = new Date().getTime() + 1000 * ttl; var expires = new Date().getTime() + 1000 * ttl;
this.cache[ key ] = { var c = {
data: data data: data
, headers: { , headers: {
"Content-Length": res.headers[ "Content-Length" ] "Content-Length": res.headers[ "Content-Length" ]
, "Content-Type": res.headers[ "Content-Type" ] , "Content-Type": res.headers[ "Content-Type" ]
, "X-Cache-Expires": new Date( expires ) , "X-Cache-Expires": new Date( expires )
} }
, statusCode: res.statusCode
, ttl: expires , ttl: expires
}; };
if( res.headers[ "Location" ] )
c.headers[ "Location" ] = res.headers[ "Location" ];
this.cache[ key ] = c;
Dragonfly.Debug( "StoreCache: \"" + key + "\", expire " + new Date( expires ) ); Dragonfly.Debug( "StoreCache: \"" + key + "\", expire " + new Date( expires ) );
} }
@ -76,9 +81,9 @@ class PageCache
); );
var c = this.cache[ url ]; var c = this.cache[ url ];
res.headers = c.headers; res.writeHead( c.statusCode, c.headers );
res.write( c.data ); res.end( c.data );
res.end();
return true; return true;
} }