Обсуждение Оптимизация скорости Magento

Для того что маджента летала как истребитель надо
1. периодически чистить базу ручками (я последний раз и MySql стер 3.5Gib лишней инфы и база стала весить 700Mib) (к сожалению нет кода запросов для очистки под рукой).
2. Иметь дедик с Ram больше 4GB
3. Задействовать Систему кэширования на стороне сервака
4. Установить на Magento FPC
5. После настройки отключить ненужные логи.
6. Включить сжатие при отдачи страничек юзеру (крутим аппач or nginx)
7. включить кэширование на сторое юзера (крутим аппач or nginx).
8. отключить ненужные службы на сервере.
9. Вспоминать пункт 1 раз-два в месяц!
10. и на последок выгоняем всех соседей с сервака, поскольку ваш проект монстр, все остальные не удел, по этому их место на шареде те на койке в коммуналке.

Так обеспечите себе отдачу страницы в 0.11sec
 
После настройки отключить ненужные логи.

Точно!
Код:
<?xml version="1.0"?>
<!-- license -->
<config>
    <global>
        <!-- global config -->
    </global>
    <frontend>
        <events>
            <!-- disble logs -->
            <controller_action_predispatch>
                <observers><log><type>disabled</type></log></observers>
            </controller_action_predispatch>
            <controller_action_postdispatch>
                <observers><log><type>disabled</type></log></observers>
            </controller_action_postdispatch>
            <customer_login>
                <observers><log><type>disabled</type></log></observers>
            </customer_login>
            <customer_logout>
                <observers><log><type>disabled</type></log></observers>
            </customer_logout>
            <sales_quote_save_after>
                <observers><log><type>disabled</type></log></observers>
            </sales_quote_save_after>
            <checkout_quote_destroy>
                <observers><log><type>disabled</type></log></observers>
            </checkout_quote_destroy>
            <!-- disable reports -->
            <catalog_controller_product_view>
                <observers><reports><type>disabled</type></reports></observers>
            </catalog_controller_product_view>
            <catalog_product_compare_add_product>
                <observers><reports><type>disabled</type></reports></observers>
            </catalog_product_compare_add_product>
            <catalog_product_compare_item_collection_clear>
                <observers><reports><type>disabled</type></reports></observers>
            </catalog_product_compare_item_collection_clear>
            <catalog_product_compare_remove_product>
                <observers><reports><type>disabled</type></reports></observers>
            </catalog_product_compare_remove_product>
            <customer_logout>
                <observers><reports><type>disabled</type></reports></observers>
            </customer_logout>
            <sales_quote_item_save_before>
                <observers><reports><type>disabled</type></reports></observers>
            </sales_quote_item_save_before>
            <sendfriend_product>
                <observers><reports><type>disabled</type></reports></observers>
            </sendfriend_product>
            <wishlist_add_product>
                <observers><reports><type>disabled</type></reports></observers>
            </wishlist_add_product>
            <wishlist_share>
                <observers><reports><type>disabled</type></reports></observers>
            </wishlist_share>
        </events>
    </frontend>
</config>
 
suggest in this thread to discuss one of the main problems Magento - speed.
At the forum in different positions are often affected by this issue from different angles.
Those who have questions about the optimization of speed ask here.
Who has experience in increasing the speed of request to participate in discussions, share useful knowledge.

1. First of all change Apache server to Nginx.
2. Use MariaDb or Percona instead of mysql with a good configuration, regarding, your server performance.
3. Use full page cache module. We are using Amasty Full page cache, we suggest it!
4. Install Zend opcache on your server.
5. Optimize static content what google pagespeed suggest!
6. Use Magento merging.

We have 14.000 products with more than thousand attributes per products, and our page loading time is under 1 sec, with these configuration!

Our server specification is 6 core with 8GB ram.
 
А такой вопрос, на каких объемах товара уже ложиться M, если взять идеальное железо?
 
Ого, а есть готовые примеры взглянуть на такие объемы?
как-то так)
ссылку на шоп дать не могу

99% автозапчасти
да)

А какой командой полностью таблицу грохнуть?
TRUNCATE core_url_rewrite
 

Вложения

  • Снимок экрана 2016-01-19 в 13.11.48.png
    Снимок экрана 2016-01-19 в 13.11.48.png
    17,7 KB · Просмотры: 60
Последнее редактирование модератором:
Назад
Сверху