无语大神

文章
4
资源
1
加入时间
3年2月3天

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 ...