kaven276

Results 4 issues of kaven276

h.auto_etag_on 和 gwCache 要考虑到 template 文件的变化,不能简单的 304 返回。(todo) 需要看有无 _template 响应头,如果有还要看 _template 响应头是否变化 可以是 etag 中增加 hash(template_name+file_lmt), 但是生产系统不可能总去查看文件有无改变,因此就认定不改变, 更新 public/private cache 需要通过 no-cache request 来刷新

noradle is advancing in these area now, for less overhead, noradle choose to work for installation script and test on the end of these already finished improment and ongoing ones....

## Noradle 提供 fcgi 服务。 启动 fcgi.js 后,进程将监听来自 webserver 的 fcgi 请求。 使用 fcgi.env(name) 可以得到各个环境参数。 使用 fcgi.stdin 可以得到请求实体, 使用 fcgi.stdout 可以进行输出 使用 fcgi.data 得到 filter 数据源 ## Noradle 可以替换 web...

enhancement

``` define(['angular', 'domReady!', 'debug'], function(angular, doc, debug){ debug.error('in app'); // check angular(shim) and domReady var app = angular.module('app1', ["binnng/debug"]) .controller('c1', ['$scope', function($scope){ $scope.name = 'kaven'; //$debug.error('error'); }]); angular.bootstrap(doc.body, ['app1']); });...