Tuesday, July 06, 2010

techspot IBM cares

Agile Development, Test Automation, Early Defect Removal Techniques, Secure Engineering, Cloud Computing and Engineering Practices & Tools & Techniques 

study note cakePHP

ACL access control list
ARO access request object
ACO access control object
use groups and roles to grant privilege to user.


var $components = array('Cookie');
function beforeFilter() {
$this->Cookie->name = 'baker_id';
$this->Cookie->time = 3600; // or '1 hour'
$this->Cookie->path = '/bakers/preferences/';
$this->Cookie->domain = 'example.com';
$this->Cookie->secure = true; //i.e. only sent if using secure HTTPS
$this->Cookie->key = 'qSI232qs*&sXOw!';
}

apache的bin目录下,有个名为ab的文件,我们通常称它为ab测试。它能够模拟http请求,并post参数之类。并能创建多线程。