ToDo.adoc| Commit | Message |
|---|---|
acb790ad2 | Fix various typos |
Continuously updated — latest edits include typos fix. Most entries are in German (team language).
| Section | Scope | Key items |
|---|---|---|
| Aktuell (Current) | Being worked on now | JCR orphaned nodes tool, Google Calendar integration, AG-Grid column persistence bug, N+1 query optimization for caches, Hibernate Search reindex broken, Groovy deprecation |
| Später (Later) | Deferred to future releases | LDAP modification detection, address search page fix, invoice export optimization |
| Ganz später (Much later) | Low priority | Calendar list excessive DB queries |
| Operational | Runbooks | PostgreSQL dump import speedup (disable fsync/synchronous_commit), Rancher Docker cleanup, order book snapshot import/export via pg_read_binary_file |
The operational section is the most valuable part for new developers. It contains:
ALTER SYSTEM SET fsync = off; ALTER SYSTEM SET synchronous_commit = off; — sacrifices durability for import speed. These settings MUST be reverted after import.SHA{BC871652288E56E306CFA093BEFC3FFCD0ED8872} = test123. Used everywhere — SQL examples, Docker setup, CI scripts.update t_calendar set ext_subscription=false — prevents mass API calls to external calendars when using production data for development.docker system prune -a --volumes — complete Docker garbage collection. Dangerous in production, essential in dev.