{% extends 'base.html' %} {% block content %}
{% if redis_status_display == 'NOT INSTALLED' %}

{{_('REDIS is not currently installed.')}}

{{_('To install REDIS click on the button bellow.')}}

{% elif redis_status_display == 'ON' %} {% set maxmemory_value_int = maxmemory_value | int %} {% set maxmemory_value_in_MB = maxmemory_value_int / (1000 * 1000) %}
{{ _('Connection Info') }}

{{ _('Active') }}


127.0.0.1

{{ _('*or localhost') }}

6379

{{ _('*Access to the service is NOT available from other servers.') }}
{{ _('REDIS Memory Allocation') }}

{{ _('You can allocate RAM to REDIS service.') }}

{{ _('Current Memory limit for REDIS service') }}

{% if maxmemory_value_int == 0 %} {% else %} {{ maxmemory_value_in_MB | int }} MB {% endif %}

{{ maxmemory_value_in_MB | int }} MB
{% endif %} {% if redis_status_display == 'ON' %} {% elif redis_status_display == 'NOT INSTALLED' %} {% elif redis_status_display == 'OFF' %}

{{ _('REDIS is currently disabled.') }}

{{ _('To enable REDIS SERVER click on the button bellow.') }}

{% else %}

{{ _('REDIS service status is unknown.') }}

{{ _('Unable to determinate current REDIS service status, try Start&Stop actions.') }}
{{ _('If the issue persists please contact support.') }}

{% endif %}
{% endblock %}