Is it possible to make Magento 2 fast (i.e. < 2s page load) without using any caching?Call to Magento load() to load a model is slow the first time, fast in subsequent calls?Any other caching than var/cache? / Flush Magento Cache works, rm -rf var/cache notIs there a way to make frequent changes to a Magento site without sacrificing caching/indexing performance?How to make Magento 2 development sites fast?Product brand (attribute, category or both)?Magento 1: caching SQL queries using Magento cacheHow to make magento 2 indexing fastMagento 2 - PHPUnit using mocking or without mocking?Load Page Without Cache, Without Flushing The Cache in Magento 2Magento 2 Integrate Lazy Load without using any third party extension

Apply a different color ramp to subset of categorized symbols in QGIS?

Are there moral objections to a life motivated purely by money? How to sway a person from this lifestyle?

"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?

How much of a wave function must reside inside event horizon for it to be consumed by the black hole?

What is the unit of time_lock_delta in LND?

Why did Rep. Omar conclude her criticism of US troops with the phrase "NotTodaySatan"?

What is the best way to deal with NPC-NPC combat?

How to not starve gigantic beasts

Why do distances seem to matter in the Foundation world?

Complex numbers z=-3-4i polar form

NPN: Not fully sinking to GND

What does a straight horizontal line above a few notes, after a changed tempo mean?

Creating a chemical industry from a medieval tech level without petroleum

Why doesn't the standard consider a template constructor as a copy constructor?

Combinatorics problem, right solution?

As an international instructor, should I openly talk about my accent?

How exactly does Hawking radiation decrease the mass of black holes?

Retract an already submitted recommendation letter (written for an undergrad student)

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

Why did C use the -> operator instead of reusing the . operator?

Unknown code in script

Is there a word for the censored part of a video?

Is there any pythonic way to find average of specific tuple elements in array?

Can a level 2 Warlock take one level in rogue, then continue advancing as a warlock?



Is it possible to make Magento 2 fast (i.e.


Call to Magento load() to load a model is slow the first time, fast in subsequent calls?Any other caching than var/cache? / Flush Magento Cache works, rm -rf var/cache notIs there a way to make frequent changes to a Magento site without sacrificing caching/indexing performance?How to make Magento 2 development sites fast?Product brand (attribute, category or both)?Magento 1: caching SQL queries using Magento cacheHow to make magento 2 indexing fastMagento 2 - PHPUnit using mocking or without mocking?Load Page Without Cache, Without Flushing The Cache in Magento 2Magento 2 Integrate Lazy Load without using any third party extension






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















In web development it's good practice to ensure that your applications perform sufficiently well without relying on a cache. Caching should not be used as a crutch or a permanent solution to mask otherwise poor performance.



So my question is: is it possible to achieve acceptably performant (i.e. under two second) page loads in Magento 2 without using any caching, and if so, how?










share|improve this question






















  • You have raised a good point. +1

    – Shoaib Munir
    3 hours ago

















2















In web development it's good practice to ensure that your applications perform sufficiently well without relying on a cache. Caching should not be used as a crutch or a permanent solution to mask otherwise poor performance.



So my question is: is it possible to achieve acceptably performant (i.e. under two second) page loads in Magento 2 without using any caching, and if so, how?










share|improve this question






















  • You have raised a good point. +1

    – Shoaib Munir
    3 hours ago













2












2








2








In web development it's good practice to ensure that your applications perform sufficiently well without relying on a cache. Caching should not be used as a crutch or a permanent solution to mask otherwise poor performance.



So my question is: is it possible to achieve acceptably performant (i.e. under two second) page loads in Magento 2 without using any caching, and if so, how?










share|improve this question














In web development it's good practice to ensure that your applications perform sufficiently well without relying on a cache. Caching should not be used as a crutch or a permanent solution to mask otherwise poor performance.



So my question is: is it possible to achieve acceptably performant (i.e. under two second) page loads in Magento 2 without using any caching, and if so, how?







magento2 cache performance






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 6 hours ago









WackGetWackGet

352213




352213












  • You have raised a good point. +1

    – Shoaib Munir
    3 hours ago

















  • You have raised a good point. +1

    – Shoaib Munir
    3 hours ago
















You have raised a good point. +1

– Shoaib Munir
3 hours ago





You have raised a good point. +1

– Shoaib Munir
3 hours ago










1 Answer
1






active

oldest

votes


















0














Yes, I have done this one before.



  1. Inspect every installed 3rd-party extension, and disable useless extensions on your website

  2. Choose the fastest hosting you can afford

  3. Turn Production Mode On

  4. Never Use JS Bundling
    enter image description here

  5. Enable CSS/JS Minification
    enter image description here

  6. Last and most importantly, enable profiler and check all the files (.phtml) and events, check which are taking more time to execute. And remember even 0.5 sec for a file or event is also huge time for a single file/event.

Reference for most of the points: https://servebolt.com/articles/speed-up-magento-2-in-7-easy-steps/






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%2f272483%2fis-it-possible-to-make-magento-2-fast-i-e-2s-page-load-without-using-any-ca%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














    Yes, I have done this one before.



    1. Inspect every installed 3rd-party extension, and disable useless extensions on your website

    2. Choose the fastest hosting you can afford

    3. Turn Production Mode On

    4. Never Use JS Bundling
      enter image description here

    5. Enable CSS/JS Minification
      enter image description here

    6. Last and most importantly, enable profiler and check all the files (.phtml) and events, check which are taking more time to execute. And remember even 0.5 sec for a file or event is also huge time for a single file/event.

    Reference for most of the points: https://servebolt.com/articles/speed-up-magento-2-in-7-easy-steps/






    share|improve this answer



























      0














      Yes, I have done this one before.



      1. Inspect every installed 3rd-party extension, and disable useless extensions on your website

      2. Choose the fastest hosting you can afford

      3. Turn Production Mode On

      4. Never Use JS Bundling
        enter image description here

      5. Enable CSS/JS Minification
        enter image description here

      6. Last and most importantly, enable profiler and check all the files (.phtml) and events, check which are taking more time to execute. And remember even 0.5 sec for a file or event is also huge time for a single file/event.

      Reference for most of the points: https://servebolt.com/articles/speed-up-magento-2-in-7-easy-steps/






      share|improve this answer

























        0












        0








        0







        Yes, I have done this one before.



        1. Inspect every installed 3rd-party extension, and disable useless extensions on your website

        2. Choose the fastest hosting you can afford

        3. Turn Production Mode On

        4. Never Use JS Bundling
          enter image description here

        5. Enable CSS/JS Minification
          enter image description here

        6. Last and most importantly, enable profiler and check all the files (.phtml) and events, check which are taking more time to execute. And remember even 0.5 sec for a file or event is also huge time for a single file/event.

        Reference for most of the points: https://servebolt.com/articles/speed-up-magento-2-in-7-easy-steps/






        share|improve this answer













        Yes, I have done this one before.



        1. Inspect every installed 3rd-party extension, and disable useless extensions on your website

        2. Choose the fastest hosting you can afford

        3. Turn Production Mode On

        4. Never Use JS Bundling
          enter image description here

        5. Enable CSS/JS Minification
          enter image description here

        6. Last and most importantly, enable profiler and check all the files (.phtml) and events, check which are taking more time to execute. And remember even 0.5 sec for a file or event is also huge time for a single file/event.

        Reference for most of the points: https://servebolt.com/articles/speed-up-magento-2-in-7-easy-steps/







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 3 hours ago









        Shoaib MunirShoaib Munir

        2,67421031




        2,67421031



























            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%2f272483%2fis-it-possible-to-make-magento-2-fast-i-e-2s-page-load-without-using-any-ca%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

            Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

            Fil:Tokke komm.svg

            Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?