This is an excercise to illustrate how PHP fibers can increase application performance with multitasking. This code is an addition to my talk at Kilo Dev.X event in October 2023.
Application is a PHP script that converts *.tiff images to *.jpeg format.
Conversion is done using ImageMagick's convert utility.
Make sure you have ImageMagick installed. On Mac you can use homebrew:
brew install imagemagickOn linux, use your package manager, e.g. apt in Debian/Ubuntu:
sudo apt install imagemagickTo verify ImageMagick installation run the following command:
convert logo: logo.gifRepository contains multiple branches, each containing the application at different stage:
mainbranch contains a naive, synchronous implementation of converter1--sync-nonblocking-refactorbranch: the application is still synchronous but contains some changes and optimizations for running asynchronously2--async-fibersbranch: application is refactored to run asynchronously using fibers3--optimize-performancebranch: limited the number of fibers to optimize application performance in long-run
~/Projects/fibers> php src/convert.php
Successfully converted ./photos/DSCF3727.tiff => ./photos/export/DSCF3727.jpg
Successfully converted ./photos/DSCF3706.tiff => ./photos/export/DSCF3706.jpg
Successfully converted ./photos/DSCF3700.tiff => ./photos/export/DSCF3700.jpg
Successfully converted ./photos/DSCF3703.tiff => ./photos/export/DSCF3703.jpg
Successfully converted ./photos/DSCF3714.tiff => ./photos/export/DSCF3714.jpg
Successfully converted ./photos/DSCF3699.tiff => ./photos/export/DSCF3699.jpg
Directory processed in 3.7 seconds~/Projects/fibers> php src/convert.php
Successfully converted ./photos/DSCF3727.tiff => ./photos/export/DSCF3727.jpg
Successfully converted ./photos/DSCF3703.tiff => ./photos/export/DSCF3703.jpg
Successfully converted ./photos/DSCF3714.tiff => ./photos/export/DSCF3714.jpg
Successfully converted ./photos/DSCF3700.tiff => ./photos/export/DSCF3700.jpg
Successfully converted ./photos/DSCF3696.tiff => ./photos/export/DSCF3696.jpg
Successfully converted ./photos/DSCF3706.tiff => ./photos/export/DSCF3706.jpg
Successfully converted ./photos/DSCF3699.tiff => ./photos/export/DSCF3699.jpg
Directory processed in 1.5 seconds