Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90855389
PhabricatorDaemonTaskGarbageCollector.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, Nov 5, 09:22
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 7, 09:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22145266
Attached To
rPH Phabricator
PhabricatorDaemonTaskGarbageCollector.php
View Options
<?php
final
class
PhabricatorDaemonTaskGarbageCollector
extends
PhabricatorGarbageCollector
{
public
function
collectGarbage
()
{
$key
=
'gcdaemon.ttl.task-archive'
;
$ttl
=
PhabricatorEnv
::
getEnvConfig
(
$key
);
if
(
$ttl
<=
0
)
{
return
false
;
}
$table
=
new
PhabricatorWorkerArchiveTask
();
$data_table
=
new
PhabricatorWorkerTaskData
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$tasks
=
id
(
new
PhabricatorWorkerArchiveTaskQuery
())
->
withDateCreatedBefore
(
time
()
-
$ttl
)
->
execute
();
if
(!
$tasks
)
{
return
false
;
}
$data_ids
=
array_filter
(
mpull
(
$tasks
,
'getDataID'
));
$task_ids
=
mpull
(
$tasks
,
'getID'
);
$table
->
openTransaction
();
if
(
$data_ids
)
{
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE id IN (%Ld)'
,
$data_table
->
getTableName
(),
$data_ids
);
}
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE id IN (%Ld)'
,
$table
->
getTableName
(),
$task_ids
);
$table
->
saveTransaction
();
return
(
count
(
$task_ids
)
==
100
);
}
}
Event Timeline
Log In to Comment