Page MenuHomestyx hydra

MultimeterEventGarbageCollector.php
No OneTemporary

MultimeterEventGarbageCollector.php

<?php
final class MultimeterEventGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'multimeter.events';
public function getCollectorName() {
return pht('Multimeter Events');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new MultimeterEvent();
$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:17 AM (5 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33691
Default Alt Text
MultimeterEventGarbageCollector.php (643 B)

Event Timeline