mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 00:02:21 +09:00
select시 count 쿼리의 결과를 캐싱하는 기능을 사용하지 않도록 변경 - 캐시파일이 너무 많이 생겨서 차후 개선후 사용하도록 할 예정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4056 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9f452d0705
commit
ce824ed878
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue