Comparison of means
PHP 7.4 with preload is 11.07% faster then PHP 7.3
PHP 7.4 with preload is 13.25% faster then PHP 7.1
Mean: 0.458
upstream fastcgi_backend_php80 { | |
# use tcp connection | |
server 127.0.0.1:9010; | |
# or socket | |
# server unix:/var/run/php/php7.0-fpm.sock; | |
} |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>loc.run.github-actions-agent</string> | |
<key>WorkingDirectory</key> | |
<string>{WORKING_DIRECTORY}</string> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/opt/local/Library/Frameworks/Python.framework/Versions/Current/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> |
mkdir -p dev/patches | |
# apply jQuery 3 to the project | |
curl https://github.com/magento/magento2/compare/2.3.1...morozov-group:2.3.1-jquery3.patch |\ | |
sed 's#/app/code/Magento/Catalog/#/vendor/magento/module-catalog/#g' |\ | |
sed 's#/app/code/Magento/ConfigurableProduct/#/vendor/magento/module-configurable-product/#g' |\ | |
sed 's#/app/code/Magento/ProductVideo/#/vendor/magento/module-product-video/#g' |\ | |
sed 's#/app/code/Magento/Theme/#/vendor/magento/module-theme/#g' |\ | |
sed 's#/app/code/Magento/Ui/#/vendor/magento/module-ui/#g' |\ | |
sed 's#/app/code/Magento/User/#/vendor/magento/module-user/#g' > dev/patches/mg_jquery3.patch |
docker run -d --name redis \ | |
-p 6379:6379 \ | |
--restart always redis |
// Compatible with requirejs/alameda | |
let dependencies = Object.values(require.contexts._.deferreds).map((m) => { | |
if (m.hasOwnProperty('deps')) { | |
return m.deps.map((d) => { | |
return [m.map.id, d.id]; | |
}); | |
} else { | |
return []; | |
} |
docker run -d --name mysql8 \ | |
-p 3306:3306 -p 33060:33060 \ | |
-e MYSQL_ROOT_PASSWORD=123123qa \ | |
--restart always mysql \ | |
/entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password \ | |
--connect-timeout=31536000 \ | |
--wait-timeout=31536000 \ | |
--lock-wait-timeout=31536000 \ | |
--character-set-server=utf8 \ | |
--collation-server=utf8_general_ci \ |
Index: api.go | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>US-ASCII | |
=================================================================== | |
--- api.go (revision 0d7be903f950c035d6e95eabfd9b011a507f4488) | |
+++ api.go (revision 17fa3ab2a352908cb4104a11f7c5c0e5eb8e10bb) | |
@@ -23,6 +23,7 @@ | |
type Client struct { | |
VAToken string // vCloud Air authorization token |