Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123108165
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
Thu, Jul 24, 22:27
Size
457 B
Mime Type
text/x-php
Expires
Sat, Jul 26, 22:27 (2 d)
Engine
blob
Format
Raw Data
Handle
27638052
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