{% extends 'squid/cache/index.html' %} {% block toolbar_memory %}class="active"{%endblock%} {% block page_comment %}{% endblock %} {% block page_content %}
{% block member_heading%}{%endblock%} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.cache_mem}}
{% if form.cache_mem.errors %} {{form.cache_mem.errors|striptags}} {% else %} Specify here the size of memory cache in megabytes. Default value is 256 MB. See Squid documentaton for more information. {%endif%}
{{form.maximum_object_size_in_memory}}
{% if form.maximum_object_size_in_memory.errors %} {{form.maximum_object_size_in_memory.errors|striptags}} {% else %} Specify here the max size of object to store in memory cache in kilobytes. Default value is 512 KB. Objects bigger than this value are not saved into memory cache. See Squid documentaton for more information. {%endif%}
{{form.memory_replacement_policy}} {% if form.memory_replacement_policy.errors %} {{form.memory_replacement_policy.errors|striptags}} {% else %} Memory replacement policy parameter determines which objects are purged from memory when memory space is needed. Default value is LRU. See Squid documentaton for more information. {%endif%}
{% endblock %}