select시 count 쿼리의 결과를 캐싱하는 기능을 사용하지 않도록 변경 - 캐시파일이 너무 많이 생겨서 차후 개선후 사용하도록 할 예정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4056 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-03-31 00:23:59 +00:00
parent 9f452d0705
commit ce824ed878

View file

@ -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);