How to Implement Queue functionality for Product import in Magento 2
I want to implement Queue when importing product csv from admin side.
I want to just add Queue and u=when user import any csv of product then just return message with queue and in background it will imported.
2
Answers
Finally i completed this using below step:-
Step 1:- Create Plugin
Step 2:- Create plugin around
Step 3 : - Create process class for call publisher
ANd then create other necessary file related to queue
I can't post complete code here But you will get idea using this code
Implementing queue functionality for product import in Magento 2 involves creating a custom module that uses Magento’s built-in Message Queue system. This allows for efficient processing of large product imports in the background without blocking the user interface.