# ard-005: IndexedDB Satisfied by: task-020 ## Problem The Web GUI must store domain entities somewhere. ## Options - IndexedDB - SQLite embedded into WASM - Storage API - Local storage ## Decision The Web GUI will store domain entities in IndexedDB. For storing large amounts of data with random access, it's the standard solution, and is adequate.