Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98559230
PhabricatorSystemActionGarbageCollector.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
Tue, Jan 14, 08:15
Size
662 B
Mime Type
text/x-php
Expires
Thu, Jan 16, 08:15 (2 d)
Engine
blob
Format
Raw Data
Handle
23603998
Attached To
rPH Phabricator
PhabricatorSystemActionGarbageCollector.php
View Options
<?php
final
class
PhabricatorSystemActionGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'system.actions'
;
public
function
getCollectorName
()
{
return
pht
(
'Rate Limiting Actions'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'3 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorSystemActionLog
();
$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