Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110422567
HeraldWebhookRequestGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Apr 26, 06:36
Size
654 B
Mime Type
text/x-php
Expires
Mon, Apr 28, 06:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25818177
Attached To
rPH Phabricator
HeraldWebhookRequestGarbageCollector.php
View Options
<?php
final
class
HeraldWebhookRequestGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'herald.webhooks'
;
public
function
getCollectorName
()
{
return
pht
(
'Herald Webhooks'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'7 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
HeraldWebhookRequest
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100'
,
$table
->
getTableName
(),
$this
->
getGarbageEpoch
());
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment