Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101176435
ConduitLogGarbageCollector.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
Thu, Feb 6, 11:59
Size
585 B
Mime Type
text/x-php
Expires
Sat, Feb 8, 11:59 (2 d)
Engine
blob
Format
Raw Data
Handle
24107109
Attached To
rPH Phabricator
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
);
}
}
Event Timeline
Log In to Comment