version 1.0.4 of php memory limit manager component released
I happy to announce the release of 1.0.4 of bazzlines memory limit manager component for php. Important changes are:
- updated dependencies
- removed dependency to apigen
I happy to announce the release of 1.0.4 of bazzlines memory limit manager component for php. Important changes are:
I happy to announce the release of 1.0.1 of bazzlines time limit manager component for php. Important changes are:
I happy to announce the release of 1.0.3 of bazzlines memory limit manager component for php. Important changes are:
I'm happy to announce the release of version 1.0.1 from the componen Memory Limit Manager for PHP.
$manager = new Net\Bazzline\Component\MemoryLimitManager\MemoryLimitManager();
$manager->setBufferInMegaBytes(4);
$manager->setLimitInMegaBytes(64);
while (!empty($dataSet)) {
if ($manager->isLimitReached()) {
//exit while loop, shutdown process
} else {
$data = array_shift($dataSet);
//work on data set
}
}
mkdir -p vendor/net_bazzline/php_component_memory_limit_manager
cd vendor/net_bazzline/php_component_memory_limit_manager
git clone https://github.com/bazzline/php_component_memory_limit_manager
composer require net_bazzline/php_component_memory_limit_manager:dev-master