Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96526004
ConduitConnectionGarbageCollector.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
Fri, Dec 27, 15:00
Size
705 B
Mime Type
text/x-php
Expires
Sun, Dec 29, 15:00 (1 d, 6 h)
Engine
blob
Format
Raw Data
Handle
23198331
Attached To
rPH Phabricator
ConduitConnectionGarbageCollector.php
View Options
<?php
final
class
ConduitConnectionGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'conduit.connections'
;
public
function
getCollectorName
()
{
return
pht
(
'Conduit Connections'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'180 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorConduitConnectionLog
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d
ORDER BY dateCreated ASC LIMIT 100'
,
$table
->
getTableName
(),
$this
->
getGarbageEpoch
());
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment