Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93457322
PhabricatorUserCachePurger.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
Thu, Nov 28, 22:12
Size
323 B
Mime Type
text/x-php
Expires
Sat, Nov 30, 22:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22643454
Attached To
rPH Phabricator
PhabricatorUserCachePurger.php
View Options
<?php
final
class
PhabricatorUserCachePurger
extends
PhabricatorCachePurger
{
const
PURGERKEY
=
'user'
;
public
function
purgeCache
()
{
$table
=
new
PhabricatorUserCache
();
$conn
=
$table
->
establishConnection
(
'w'
);
queryfx
(
$conn
,
'TRUNCATE TABLE %T'
,
$table
->
getTableName
());
}
}
Event Timeline
Log In to Comment