Page MenuHomestyx hydra

FeedStoryNotificationGarbageCollector.php
No OneTemporary

FeedStoryNotificationGarbageCollector.php

<?php
final class FeedStoryNotificationGarbageCollector
extends PhabricatorGarbageCollector {
const COLLECTORCONST = 'feed.notifications';
public function getCollectorName() {
return pht('Notifications');
}
public function getDefaultRetentionPolicy() {
return phutil_units('90 days in seconds');
}
protected function collectGarbage() {
$table = new PhabricatorFeedStoryNotification();
$conn_w = $table->establishConnection('w');
queryfx(
$conn_w,
'DELETE FROM %T WHERE chronologicalKey < (%d << 32)
ORDER BY chronologicalKey ASC LIMIT 100',
$table->getTableName(),
$this->getGarbageEpoch());
return ($conn_w->getAffectedRows() == 100);
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Feb 6, 1:34 AM (8 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33750
Default Alt Text
FeedStoryNotificationGarbageCollector.php (720 B)

Event Timeline