Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539466
DiffusionPullEventGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
663 B
Referenced Files
None
Subscribers
None
DiffusionPullEventGarbageCollector.php
View Options
<?php
final
class
DiffusionPullEventGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'diffusion.pull'
;
public
function
getCollectorName
()
{
return
pht
(
'Repository Pull Events'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'30 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorRepositoryPullEvent
();
$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
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:11 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120228
Default Alt Text
DiffusionPullEventGarbageCollector.php (663 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment