pfortin / magento2-session-unblocker
Module for Magento 2 that prevents session blocking between concurrent AJAX requests
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 450
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 8
Type:magento2-module
Requires
- php: ~5.5.0|~5.6.0|~7.0.0|~7.1.0|~7.2.0
- magento/framework: ^100.1|^101.0|^102.0
- magento/module-catalog: ^101.0.0|^102.0.0|^103.0
- magento/module-customer: ^101.0.0|^102.0.0
Requires (Dev)
This package is not auto-updated.
Last update: 2020-09-04 13:32:33 UTC
README
![Software License][ico-license] [![Build Status][ico-travis]][link-travis] [![Coverage Status][ico-scrutinizer]][link-scrutinizer] [![Quality Score][ico-code-quality]][link-code-quality]
This extension improves the performance of AJAX requests in Magento by reducing session locking, without having to disable locking in the cache backend (e.g. Redis)
Session locking keeps safe from race conditions from parallel requests, so disabling it completely can result in session data loss.
Instead we minimize the lock time by closing the session as soon as we have read it, if we do not need to write to it anymore.
Installation
- Install via composer
composer require pfortin/magento2-session-unblocker
- Enable module
bin/magento setup:upgrade
Configuration
Zero configuration needed.