Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893502
PhabricatorSystemDestructionGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
677 B
Referenced Files
None
Subscribers
None
PhabricatorSystemDestructionGarbageCollector.php
View Options
<?php
final
class
PhabricatorSystemDestructionGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'system.destruction.logs'
;
public
function
getCollectorName
(
)
{
return
pht
(
'Destruction Logs'
)
;
}
public
function
getDefaultRetentionPolicy
(
)
{
return
phutil_units
(
'90 days in seconds'
)
;
}
protected
function
collectGarbage
(
)
{
$table
=
new
PhabricatorSystemDestructionLog
(
)
;
$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
Sun, Jan 19, 18:31 (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127452
Default Alt Text
PhabricatorSystemDestructionGarbageCollector.php (677 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment