Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1102093
PhabricatorGarbageCollectorConfigOptions.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
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.'
)),
);
$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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 30, 4:12 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
274178
Default Alt Text
PhabricatorGarbageCollectorConfigOptions.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment