Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106131247
PhabricatorDaemonLogEventGarbageCollector.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, Mar 22, 21:57
Size
660 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 21:57 (2 d)
Engine
blob
Format
Raw Data
Handle
25120269
Attached To
rPH Phabricator
PhabricatorDaemonLogEventGarbageCollector.php
View Options
<?php
final
class
PhabricatorDaemonLogEventGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'daemon.processes'
;
public
function
getCollectorName
()
{
return
pht
(
'Daemon Processes'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'7 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorDaemonLogEvent
();
$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