Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98638407
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
Wed, Jan 15, 03:49
Size
653 B
Mime Type
text/x-php
Expires
Fri, Jan 17, 03:49 (2 d)
Engine
blob
Format
Raw Data
Handle
23600093
Attached To
rPH Phabricator
PhabricatorCacheMarkupGarbageCollector.php
View Options
<?php
final
class
PhabricatorCacheMarkupGarbageCollector
extends
PhabricatorGarbageCollector
{
const
COLLECTORCONST
=
'cache.markup'
;
public
function
getCollectorName
()
{
return
pht
(
'Markup Cache'
);
}
public
function
getDefaultRetentionPolicy
()
{
return
phutil_units
(
'30 days in seconds'
);
}
protected
function
collectGarbage
()
{
$table
=
new
PhabricatorMarkupCache
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn_w
,
'DELETE FROM %T WHERE dateCreated < %d LIMIT 100'
,
$table
->
getTableName
(),
$this
->
getGarbageEpoch
());
return
(
$conn_w
->
getAffectedRows
()
==
100
);
}
}
Event Timeline
Log In to Comment