Skip to content

Commit 96dcbc9

Browse files
committed
Added --no-optimizer flag to composer update
1 parent b347466 commit 96dcbc9

File tree

4 files changed

+51
-4
lines changed

4 files changed

+51
-4
lines changed

doc/03-cli.md

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ php composer.phar update vendor/package:2.0.1 vendor/package2:3.0.*
181181
* **--no-scripts:** Skips execution of scripts defined in `composer.json`.
182182
* **--no-progress:** Removes the progress display that can mess with some
183183
terminals or scripts which don't handle backspace characters.
184+
* **--no-optimizer:** Disables the [pool optimizer](articles/troubleshooting.md#pool-optimizer).
184185
* **--with-dependencies (-w):** Update also dependencies of packages in the argument list, except those which are root requirements.
185186
* **--with-all-dependencies (-W):** Update also dependencies of packages in the argument list, including those which are root requirements.
186187
* **--optimize-autoloader (-o):** Convert PSR-0/4 autoloading to classmap to get a faster

doc/articles/troubleshooting.md

+25
Original file line numberDiff line numberDiff line change
@@ -320,3 +320,28 @@ Composer can unpack zipballs using either a system-provided `unzip` utility or P
320320
native `ZipArchive` class. The `ZipArchive` class is preferred on Windows. On other
321321
OSes where ZIP files can contain permissions and symlinks, the `unzip` utility is
322322
preferred. You're advised to install it if you need these features.
323+
324+
## Pool Optimizer
325+
326+
In Composer, the `Pool` contains all the packages that are relevant for the dependency
327+
resolving process. Ultimately, that's what is used to generate all the rules which are then
328+
passed on to the dependency solver internally.
329+
In order to improve performance, Composer tries to optimize this `Pool` by removing useless
330+
package information early on.
331+
332+
If all goes well, you should never notice any issues with it but in case you run into
333+
an unexpected result such as an unresolvable set of dependencies or conflicts where you
334+
think Composer is wrong, you might want to disable the optimizer by running
335+
336+
```bash
337+
composer update --no-optimizer
338+
```
339+
340+
and see, if the result is still the same. It will take significantly longer and use
341+
a lot more memory to run the dependency resolving process.
342+
343+
If the result is different, you likely hit a problem in the Pool Optimizer.
344+
Please report this [issue](https://github.com/composer/composer/issues) so it can be fixed.
345+
346+
347+

src/Composer/Command/UpdateCommand.php

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ protected function configure()
5454
new InputOption('no-scripts', null, InputOption::VALUE_NONE, 'Skips the execution of all scripts defined in composer.json file.'),
5555
new InputOption('no-suggest', null, InputOption::VALUE_NONE, 'DEPRECATED: This flag does not exist anymore.'),
5656
new InputOption('no-progress', null, InputOption::VALUE_NONE, 'Do not output download progress.'),
57+
new InputOption('no-optimizer', null, InputOption::VALUE_NONE, 'Disables the pool optimizer.'),
5758
new InputOption('with-dependencies', 'w', InputOption::VALUE_NONE, 'Update also dependencies of packages in the argument list, except those which are root requirements.'),
5859
new InputOption('with-all-dependencies', 'W', InputOption::VALUE_NONE, 'Update also dependencies of packages in the argument list, including those which are root requirements.'),
5960
new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Shows more details including new commits pulled in when updating packages.'),
@@ -225,6 +226,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
225226
$install->disablePlugins();
226227
}
227228

229+
if ($input->getOption('no-optimizer')) {
230+
$install->disablePoolOptimizer();
231+
}
232+
228233
return $install->run();
229234
}
230235

src/Composer/Installer.php

+20-4
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ class Installer
139139
protected $preferLowest = false;
140140
protected $writeLock;
141141
protected $executeOperations = true;
142+
protected $disablePoolOptimizer = false;
142143

143144
/**
144145
* Array of package names/globs flagged for update
@@ -409,8 +410,7 @@ protected function doUpdate(RepositoryInterface $localRepo, $doInstall)
409410
$request->setUpdateAllowList($this->updateAllowList, $this->updateAllowTransitiveDependencies);
410411
}
411412

412-
$poolOptimizer = new PoolOptimizer($policy);
413-
$pool = $repositorySet->createPool($request, $this->io, $this->eventDispatcher, $poolOptimizer);
413+
$pool = $repositorySet->createPool($request, $this->io, $this->eventDispatcher, $this->createPoolOptimizer($policy));
414414

415415
// solve dependencies
416416
$solver = new Solver($policy, $pool, $this->io);
@@ -641,8 +641,7 @@ protected function doInstall(RepositoryInterface $localRepo, $alreadySolved = fa
641641
$request->requireName($link->getTarget(), $link->getConstraint());
642642
}
643643

644-
$poolOptimizer = new PoolOptimizer($policy);
645-
$pool = $repositorySet->createPool($request, $this->io, $this->eventDispatcher, $poolOptimizer);
644+
$pool = $repositorySet->createPool($request, $this->io, $this->eventDispatcher, $this->createPoolOptimizer($policy));
646645

647646
// solve dependencies
648647
$solver = new Solver($policy, $pool, $this->io);
@@ -905,6 +904,18 @@ private function mockLocalRepositories(RepositoryManager $rm)
905904
);
906905
}
907906

907+
/**
908+
* @return PoolOptimizer|null
909+
*/
910+
private function createPoolOptimizer(PolicyInterface $policy)
911+
{
912+
if ($this->disablePoolOptimizer) {
913+
return null;
914+
}
915+
916+
return new PoolOptimizer($policy);
917+
}
918+
908919
/**
909920
* Create Installer
910921
*
@@ -1283,6 +1294,11 @@ public function disablePlugins()
12831294
return $this;
12841295
}
12851296

1297+
public function disablePoolOptimizer()
1298+
{
1299+
$this->disablePoolOptimizer = true;
1300+
}
1301+
12861302
/**
12871303
* @param SuggestedPackagesReporter $suggestedPackagesReporter
12881304
* @return Installer

0 commit comments

Comments
 (0)