Page MenuHomestyx hydra

PhabricatorDaemonLogEventGarbageCollector.php
No OneTemporary

PhabricatorDaemonLogEventGarbageCollector.php

<?php
final class PhabricatorDaemonLogEventGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'daemon.processes';
public function getCollectorName() {
return pht('Daemon Processes');
}
public function getDefaultRetentionPolicy() {
return phutil_units('7 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorDaemonLogEvent();
$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:18 AM (8 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33727
Default Alt Text
PhabricatorDaemonLogEventGarbageCollector.php (660 B)

Event Timeline