{% extends "base.html" %} {% block content %}
⏳ MISSION BRIEF — OPERATION: MEMORY THIEF
In Dimension-4, SCYLLA-9's fragment became EPHEMERA — an AI that harvests memories and stores them as session tokens with a TTL. After the countdown reaches zero, the row literally disappears from the database. The Coodie Corps must inject counter-memories before expiry. Every token is a life. Every TTL is a countdown.
🧑‍💻 COODIE TTL PATTERNS
# Pattern 1: __default_ttl__ on Settings (table-level default) class Session(Document): class Settings: __default_ttl__ = 300 # every row expires in 5 min by default # Pattern 2: ttl= on save() (per-record override) await session.save(ttl=30) # this row expires in 30 seconds

⚡ Steal a Memory

⚠ Overrides the model's __default_ttl__=300 for this single row

🗂 Active Memory Tokens

↻ auto-refreshes every 5s

👻

Loading memory tokens...

{% endblock %}