Skip to content

Commit 5bec3c4

Browse files
authored
Merge pull request #756 from cakephp/gc-random
Use rand() to trigger garbage collection
2 parents 2faf742 + 27141e2 commit 5bec3c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/Table/RequestsTable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function findRecent(Query $query, array $options)
8282
*/
8383
protected function shouldGc()
8484
{
85-
return time() % 100 === 0;
85+
return rand(1, 100) === 100;
8686
}
8787

8888
/**

0 commit comments

Comments
 (0)