From ce824ed878f98659d058e0a13d7a3b896c1a74d4 Mon Sep 17 00:00:00 2001 From: zero Date: Mon, 31 Mar 2008 00:23:59 +0000 Subject: [PATCH] =?UTF-8?q?select=EC=8B=9C=20count=20=EC=BF=BC=EB=A6=AC?= =?UTF-8?q?=EC=9D=98=20=EA=B2=B0=EA=B3=BC=EB=A5=BC=20=EC=BA=90=EC=8B=B1?= =?UTF-8?q?=ED=95=98=EB=8A=94=20=EA=B8=B0=EB=8A=A5=EC=9D=84=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20-=20=EC=BA=90=EC=8B=9C=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=EC=9D=B4=20=EB=84=88=EB=AC=B4=20=EB=A7=8E=EC=9D=B4=20=EC=83=9D?= =?UTF-8?q?=EA=B2=A8=EC=84=9C=20=EC=B0=A8=ED=9B=84=20=EA=B0=9C=EC=84=A0?= =?UTF-8?q?=ED=9B=84=20=EC=82=AC=EC=9A=A9=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=ED=95=A0=20=EC=98=88=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4056 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/db/DB.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/classes/db/DB.class.php b/classes/db/DB.class.php index ab419ec32..c5c0ac5d9 100644 --- a/classes/db/DB.class.php +++ b/classes/db/DB.class.php @@ -426,6 +426,7 @@ * @brief 카운터 캐시 데이터 얻어오기 **/ function getCountCache($tables, $condition) { + return false; if(!$tables) return false; if(!is_dir($this->count_cache_path)) return FileHandler::makeDir($this->count_cache_path); @@ -456,6 +457,7 @@ * @brief 카운터 캐시 데이터 저장 **/ function putCountCache($tables, $condition, $count = 0) { + return false; if(!$tables) return false; if(!is_dir($this->count_cache_path)) return FileHandler::makeDir($this->count_cache_path); @@ -476,6 +478,7 @@ * @brief 카운터 캐시 리셋 **/ function resetCountCache($tables) { + return false; if(!$tables) return false; if(!is_dir($this->count_cache_path)) return FileHandler::makeDir($this->count_cache_path);