1. State & Outbox Controller
2
Committed
0
Outbox
0
Conflicts
18.4ms
Latency
3. RIA Retrieval Benchmark & TS Store
| Index Mode |
Ops/sec |
Avg Latency |
| Primary Key Lookup |
142,800 |
0.02ms |
| Compound Range Scan |
38,400 |
0.14ms |
| Tokenized Search (BM25) |
12,100 |
0.48ms |
// IndexedDB / Dexie.js optimistic store harness
export class AutomationStore {
private db: Dexie;
private outbox: OutboxQueue;
constructor() {
this.db = new Dexie('RIA_AutomationCache');
this.db.version(1).stores({
tasks: 'id, priority, timestamp, sync_state',
outbox: '++mutationId, entity, action, timestamp'
});
}
}