Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Added GarbageCollectionTask, workaround for weird PHP behaviour when …
Browse files Browse the repository at this point in the history
…using --disable-ansi
  • Loading branch information
shoghicp committed Jan 6, 2015
1 parent ed02026 commit 37fd037
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pocketmine/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
use pocketmine\plugin\PluginLoadOrder;
use pocketmine\plugin\PluginManager;
use pocketmine\scheduler\CallbackTask;
use pocketmine\scheduler\GarbageCollectionTask;
use pocketmine\scheduler\SendUsageTask;
use pocketmine\scheduler\ServerScheduler;
use pocketmine\tile\Chest;
Expand Down Expand Up @@ -1688,6 +1689,8 @@ public function __construct(\ClassLoader $autoloader, \ThreadedLogger $logger, $
$this->scheduler->scheduleDelayedRepeatingTask(new CallbackTask([$this, "doLevelGC"]), $this->getProperty("chunk-gc.period-in-ticks", 600), $this->getProperty("chunk-gc.period-in-ticks", 600));
}

$this->scheduler->scheduleRepeatingTask(new GarbageCollectionTask(), 900);

$this->enablePlugins(PluginLoadOrder::POSTWORLD);

$this->start();
Expand Down
32 changes: 32 additions & 0 deletions src/pocketmine/scheduler/GarbageCollectionTask.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/*
*
* ____ _ _ __ __ _ __ __ ____
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author PocketMine Team
*
*
*/

namespace pocketmine\scheduler;

class GarbageCollectionTask extends Task{

public function onRun($currentTicks){
gc_collect_cycles();
memory_get_usage();
memory_get_usage(true);
}

}

0 comments on commit 37fd037

Please sign in to comment.