├── .gitignore ├── Console └── Command │ └── ThreadProcessorCommand.php ├── LICENSE ├── Model ├── Dimension │ ├── ParallelStoreProcessor.php │ └── ParallelWebsiteProcessor.php ├── ForkedArrayProcessor.php ├── ForkedCollectionProcessor.php ├── ForkedSearchResultProcessor.php ├── ItemProvider │ ├── ArrayWrapper.php │ ├── CollectionWrapper.php │ ├── ItemProviderInterface.php │ └── SearchResultWrapper.php └── Processor │ ├── ForkedProcessor.php │ └── ForkedProcessorRunner.php ├── README.md ├── composer.json ├── etc ├── di.xml └── module.xml └── registration.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /Console/Command/ThreadProcessorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Console/Command/ThreadProcessorCommand.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Dimension/ParallelStoreProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/Dimension/ParallelStoreProcessor.php -------------------------------------------------------------------------------- /Model/Dimension/ParallelWebsiteProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/Dimension/ParallelWebsiteProcessor.php -------------------------------------------------------------------------------- /Model/ForkedArrayProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ForkedArrayProcessor.php -------------------------------------------------------------------------------- /Model/ForkedCollectionProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ForkedCollectionProcessor.php -------------------------------------------------------------------------------- /Model/ForkedSearchResultProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ForkedSearchResultProcessor.php -------------------------------------------------------------------------------- /Model/ItemProvider/ArrayWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ItemProvider/ArrayWrapper.php -------------------------------------------------------------------------------- /Model/ItemProvider/CollectionWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ItemProvider/CollectionWrapper.php -------------------------------------------------------------------------------- /Model/ItemProvider/ItemProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ItemProvider/ItemProviderInterface.php -------------------------------------------------------------------------------- /Model/ItemProvider/SearchResultWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/ItemProvider/SearchResultWrapper.php -------------------------------------------------------------------------------- /Model/Processor/ForkedProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/Processor/ForkedProcessor.php -------------------------------------------------------------------------------- /Model/Processor/ForkedProcessorRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/Model/Processor/ForkedProcessorRunner.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zepgram/module-multi-threading/HEAD/registration.php --------------------------------------------------------------------------------