среда, 7 мая 2014 г.

включаем redis для Magento 1.8.x

Начиная с версии 1.8.0.0 Magento CE поддерживает Redis.
Установка описана тут: http://inchoo.net/ecommerce/magento/using-redis-cache-backend-and-session-storage-in-magento/
http://goo.gl/fnx4D9

1 комментарий:

  1. To test Redis server, we simply ping it using:
    redis-cli ping
    If you have received your PONG, you can proceed.

    To see if Redis extension is being loaded by PHP we can grep the output of php -m shell command:
    php -m | grep redis
    We expect string redis as a result.

    Redis shell tools

    Redis comes with a few tools, most useful one being it’s client software accessible trough following shell command:
    redis-cli
    After starting Redis client, you are presented with Redis console where you can enter supported commands. Some of the commands you’ll be using most of the time are definitely:

    FLUSHALL – clear all databases
    SELECT # – select database under index #
    FLUSHDB – empty currently selected database
    KEYS * – list all keys from currently selected

    ОтветитьУдалить