Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91483411
DrydockLogGarbageCollector.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
Mon, Nov 11, 13:55
Size
636 B
Mime Type
text/x-php
Expires
Wed, Nov 13, 13:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22269433
Attached To
rPH Phabricator
DrydockLogGarbageCollector.php
View Options
<?php
final
class
DrydockLogGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'drydock.logs'
;
public
function
getCollectorName
()
{
return
pht
(
'Drydock Logs'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'30 days in seconds'
);
}
protected
function
collectGarbage
()
{
$log_table
=
new
DrydockLog
();
$conn_w
=
$log_table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE epoch <= %d LIMIT 100'
,
$log_table
->
getTableName
(),
$this
->
getGarbageEpoch
());
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment