Page MenuHomestyx hydra

PhabricatorSystemActionGarbageCollector.php
No OneTemporary

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

File Metadata

Mime Type
text/x-php
Expires
Thu, Feb 6, 1:15 AM (2 h, 6 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33651
Default Alt Text
PhabricatorSystemActionGarbageCollector.php (662 B)

Event Timeline