Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100735622
DiffusionPullEventGarbageCollector.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
Sun, Feb 2, 07:55
Size
663 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 07:55 (2 d)
Engine
blob
Format
Raw Data
Handle
24020801
Attached To
rPH Phabricator
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
);
}
}
Event Timeline
Log In to Comment