Page MenuHomec4science

PhabricatorSystemActionGarbageCollector.php
No OneTemporary

File Metadata

Created
Mon, Sep 16, 06:15

PhabricatorSystemActionGarbageCollector.php

<?php
final class PhabricatorSystemActionGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'system.actions';
public function getCollectorName() {
return pht('Rate Limiting Actions');
}
public function getDefaultRetentionPolicy() {
return phutil_units('3 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorSystemActionLog();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE epoch < %d LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}

Event Timeline