{% extends "base.html" %} {% block title %}Hot Cache - Memory MCP Dashboard{% endblock %} {% block content %}

Hot Cache

{{ hot_stats.get('count', 0) }} / {{ hot_stats.get('max_items', 20) }} items {% if hot_stats.get('pinned_count', 0) > 0 %} · {{ hot_stats.get('pinned_count', 0) }} pinned {% endif %}

{% if memories %} {% for memory in memories %} {% set is_pinned = memory.id in (hot_stats.get('pinned_ids', [])|default([], true)) %} {% include "partials/hot_item.html" %} {% endfor %} {% else %}

No memories in hot cache

Promote memories from the browser or let auto-promotion do its work

Browse Memories
{% endif %}
{% endblock %}