magento 2 : How we can load product by sku in root fileMagento 2: Default REST API unable to update product data to multiple storesMagento2: How to update the product price programaticallyMagento 2: How to Override Abstract Class for Product Category Indexing Issue?Magento 2: addAttributeToFilter not returning any resultsMagento2 How to get configurable option and its price?Magento 2: Add a product to the cart programmaticallyMagento removes `save_rewrites_history` from custom attribute list from REST API callHow to reduce the API response time using Magento-2Magento 2.2.5: Add, Update and Delete existing products Custom OptionsHow to clone/copy product in magento 2 properly way

Russian equivalents of 能骗就骗 (if you can cheat, then cheat)

What is this fluorinated organic substance?

What could a Medieval society do with excess animal blood?

Could you fall off a planet if it was being accelerated by engines?

Enterprise Layers and Naming Conventions

Any Tips On Writing Extended Recollection In A Novel

Understanding the as-if rule, "the program was executed as written"

What is the meaning of "it" in "as luck would have it"?

Simplify the code

How useful would a hydroelectric power plant be in the post-apocalypse world?

Does friction always oppose motion?

Multiple tests with effects all in same direction but only few significant

Why do movie directors use brown tint on Mexico cities?

Move up, right, left and down functions

How does the 'five minute adventuring day' affect class balance?

How to track mail undetectably?

Find the closest three-digit hex colour

Why is my 401k manager recommending me to save more?

I agreed to cancel a long-planned vacation (with travel costs) due to project deadlines, but now the timeline has all changed again

Avoiding repetition when using the "snprintf idiom" to write text

Having to constantly redo everything because I don't know how to do it

What was the first science fiction or fantasy multiple choice book?

What would you need merely the term "collection" for pitches, but not "scale"?

Installed software from source, how to say yum not to install it from package?



magento 2 : How we can load product by sku in root file


Magento 2: Default REST API unable to update product data to multiple storesMagento2: How to update the product price programaticallyMagento 2: How to Override Abstract Class for Product Category Indexing Issue?Magento 2: addAttributeToFilter not returning any resultsMagento2 How to get configurable option and its price?Magento 2: Add a product to the cart programmaticallyMagento removes `save_rewrites_history` from custom attribute list from REST API callHow to reduce the API response time using Magento-2Magento 2.2.5: Add, Update and Delete existing products Custom OptionsHow to clone/copy product in magento 2 properly way













0















i'm using magento 2 and i've to update particular product by sku,



i've used below code to load but it is taking too much time



$objectManager = $bootstrap->getObjectManager();
$productRepository = $objectManager->get('MagentoCatalogModelProductRepository');
$product = $productRepository->get(trim($sku));


is there any other solution to load product from root which take less then above code,



Thank you,










share|improve this question


























    0















    i'm using magento 2 and i've to update particular product by sku,



    i've used below code to load but it is taking too much time



    $objectManager = $bootstrap->getObjectManager();
    $productRepository = $objectManager->get('MagentoCatalogModelProductRepository');
    $product = $productRepository->get(trim($sku));


    is there any other solution to load product from root which take less then above code,



    Thank you,










    share|improve this question
























      0












      0








      0








      i'm using magento 2 and i've to update particular product by sku,



      i've used below code to load but it is taking too much time



      $objectManager = $bootstrap->getObjectManager();
      $productRepository = $objectManager->get('MagentoCatalogModelProductRepository');
      $product = $productRepository->get(trim($sku));


      is there any other solution to load product from root which take less then above code,



      Thank you,










      share|improve this question














      i'm using magento 2 and i've to update particular product by sku,



      i've used below code to load but it is taking too much time



      $objectManager = $bootstrap->getObjectManager();
      $productRepository = $objectManager->get('MagentoCatalogModelProductRepository');
      $product = $productRepository->get(trim($sku));


      is there any other solution to load product from root which take less then above code,



      Thank you,







      magento2






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 '17 at 7:34









      YogeshYogesh

      3522 silver badges11 bronze badges




      3522 silver badges11 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Repository(MagentoCatalogModelProductRepository) always faster process for getting data.But donot know why is running show at your system.Please run complier at system



          So, Let try use Model class MagentoCatalogModelProduct instead of
          MagentoCatalogModelProductRepository.




          $objectManager = $bootstrap->getObjectManager();
          $productModel = $objectManager->get('MagentoCatalogModelProduct');
          $product = $productModel->loadByAttribute(sku', $sku);



          Please try this






          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "479"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f165744%2fmagento-2-how-we-can-load-product-by-sku-in-root-file%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Repository(MagentoCatalogModelProductRepository) always faster process for getting data.But donot know why is running show at your system.Please run complier at system



            So, Let try use Model class MagentoCatalogModelProduct instead of
            MagentoCatalogModelProductRepository.




            $objectManager = $bootstrap->getObjectManager();
            $productModel = $objectManager->get('MagentoCatalogModelProduct');
            $product = $productModel->loadByAttribute(sku', $sku);



            Please try this






            share|improve this answer



























              0














              Repository(MagentoCatalogModelProductRepository) always faster process for getting data.But donot know why is running show at your system.Please run complier at system



              So, Let try use Model class MagentoCatalogModelProduct instead of
              MagentoCatalogModelProductRepository.




              $objectManager = $bootstrap->getObjectManager();
              $productModel = $objectManager->get('MagentoCatalogModelProduct');
              $product = $productModel->loadByAttribute(sku', $sku);



              Please try this






              share|improve this answer

























                0












                0








                0







                Repository(MagentoCatalogModelProductRepository) always faster process for getting data.But donot know why is running show at your system.Please run complier at system



                So, Let try use Model class MagentoCatalogModelProduct instead of
                MagentoCatalogModelProductRepository.




                $objectManager = $bootstrap->getObjectManager();
                $productModel = $objectManager->get('MagentoCatalogModelProduct');
                $product = $productModel->loadByAttribute(sku', $sku);



                Please try this






                share|improve this answer













                Repository(MagentoCatalogModelProductRepository) always faster process for getting data.But donot know why is running show at your system.Please run complier at system



                So, Let try use Model class MagentoCatalogModelProduct instead of
                MagentoCatalogModelProductRepository.




                $objectManager = $bootstrap->getObjectManager();
                $productModel = $objectManager->get('MagentoCatalogModelProduct');
                $product = $productModel->loadByAttribute(sku', $sku);



                Please try this







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 '17 at 7:53









                Amit BeraAmit Bera

                61.7k16 gold badges84 silver badges183 bronze badges




                61.7k16 gold badges84 silver badges183 bronze badges



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Magento Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f165744%2fmagento-2-how-we-can-load-product-by-sku-in-root-file%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                    Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                    Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form