Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2354737
ConduitLogGarbageCollector.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
585 B
Referenced Files
None
Subscribers
None
ConduitLogGarbageCollector.php
View Options
<?php
final
class
ConduitLogGarbageCollector
extends
PhabricatorGarbageCollector
{
public
function
collectGarbage
()
{
$key
=
'gcdaemon.ttl.conduit-logs'
;
$ttl
=
PhabricatorEnv
::
getEnvConfig
(
$key
);
if
(
$ttl
<=
0
)
{
return
false
;
}
$table
=
new
PhabricatorConduitMethodCallLog
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d
ORDER BY dateCreated ASC LIMIT 100'
,
$table
->
getTableName
(),
time
()
-
$ttl
);
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 1:28 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
366490
Default Alt Text
ConduitLogGarbageCollector.php (585 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment