Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102584315
PeopleUserLogGarbageCollector.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, Feb 22, 06:06
Size
457 B
Mime Type
text/x-php
Expires
Mon, Feb 24, 06:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24369907
Attached To
rPH Phabricator
PeopleUserLogGarbageCollector.php
View Options
<?php
final
class
PeopleUserLogGarbageCollector
extends
PhabricatorGarbageCollector
{
public
function
collectGarbage
()
{
$ttl
=
phutil_units
(
'180 days in seconds'
);
$table
=
new
PhabricatorUserLog
();
$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