php 缓存代码的坏味道
缓存在Web程序里必不可少,最常见的形式如下:01 class Foo extends DAO02 {03 public function find_by_a()04 {05 $result = $this->cache->get('cache_a');0607 if (!$result) {08 ...