Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121692377
PhabricatorCacheMarkupGarbageCollector.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
Sun, Jul 13, 05:15
Size
556 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 05:15 (2 d)
Engine
blob
Format
Raw Data
Handle
27375273
Attached To
rPH Phabricator
PhabricatorCacheMarkupGarbageCollector.php
View Options
<?php
final
class
PhabricatorCacheMarkupGarbageCollector
extends
PhabricatorGarbageCollector
{
public
function
collectGarbage
()
{
$key
=
'gcdaemon.ttl.markup-cache'
;
$ttl
=
PhabricatorEnv
::
getEnvConfig
(
$key
);
if
(
$ttl
<=
0
)
{
return
false
;
}
$table
=
new
PhabricatorMarkupCache
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100'
,
$table
->
getTableName
(),
time
()
-
$ttl
);
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment