Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F19081911
FeedStoryNotificationGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
720 B
Referenced Files
None
Subscribers
None
FeedStoryNotificationGarbageCollector.php
View Options
<?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
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 4, 8:43 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8242750
Default Alt Text
FeedStoryNotificationGarbageCollector.php (720 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment