Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99542320
PhabricatorGarbageCollectorConfigOptions.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
Sat, Jan 25, 07:31
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 27, 07:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23819823
Attached To
rPH Phabricator
PhabricatorGarbageCollectorConfigOptions.php
View Options
<?php
final
class
PhabricatorGarbageCollectorConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Garbage Collector'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure the GC for old logs, caches, etc.'
);
}
public
function
getFontIcon
()
{
return
'fa-trash-o'
;
}
public
function
getOptions
()
{
$options
=
array
(
'gcdaemon.ttl.herald-transcripts'
=>
array
(
30
,
pht
(
'Number of seconds to retain Herald transcripts for.'
),
),
'gcdaemon.ttl.daemon-logs'
=>
array
(
7
,
pht
(
'Number of seconds to retain Daemon logs for.'
),
),
'gcdaemon.ttl.differential-parse-cache'
=>
array
(
14
,
pht
(
'Number of seconds to retain Differential parse caches for.'
),
),
'gcdaemon.ttl.markup-cache'
=>
array
(
30
,
pht
(
'Number of seconds to retain Markup cache entries for.'
),
),
'gcdaemon.ttl.task-archive'
=>
array
(
14
,
pht
(
'Number of seconds to retain archived background tasks for.'
),
),
'gcdaemon.ttl.general-cache'
=>
array
(
30
,
pht
(
'Number of seconds to retain general cache entries for.'
),
),
'gcdaemon.ttl.conduit-logs'
=>
array
(
180
,
pht
(
'Number of seconds to retain Conduit call logs for.'
),
),
);
$result
=
array
();
foreach
(
$options
as
$key
=>
$spec
)
{
list
(
$default_days
,
$description
)
=
$spec
;
$result
[]
=
$this
->
newOption
(
$key
,
'int'
,
$default_days
*
(
24
*
60
*
60
))
->
setDescription
(
$description
)
->
addExample
((
7
*
24
*
60
*
60
),
pht
(
'Retain for 1 week'
))
->
addExample
((
14
*
24
*
60
*
60
),
pht
(
'Retain for 2 weeks'
))
->
addExample
((
30
*
24
*
60
*
60
),
pht
(
'Retain for 30 days'
))
->
addExample
((
60
*
24
*
60
*
60
),
pht
(
'Retain for 60 days'
))
->
addExample
(
0
,
pht
(
'Retain indefinitely'
));
}
return
$result
;
}
}
Event Timeline
Log In to Comment