Search code examples
performanceubuntu-12.04neoscms

Neos Performance


I´m new at Neos and the concept is perfect for my needs! So thank you for developing this. But I installed the cms on my vServer and ist takes about 7.4sec to load the page! When I open the Backend menu it takes about 30sec to load all things from there.

I have no idea why this takes so long.

I´ve included a picture of the chrome developer tools network section, you can see there the long loading time.

enter image description here

I`ve already checked my server and no other processes running and could slow down the delevery process of neos.

So I hope you have an idea to solve this issue, because in this state it is to slow to use it in production environment.


Solution

  • Have you set the context to production as described in the docs?

    <VirtualHost *:80>
        SetEnv FLOW_CONTEXT Production
        ..
    </VirtualHost>
    

    Otherwise it runs in development mode, where it always checks for changes.