- 
    Type:Sub-task 
- 
    Resolution: Unresolved
- 
    Priority:Major - P3 
- 
    None
- 
    Affects Version/s: None
- 
    Component/s: PALite
- 
    None
- 
        Storage Engines, Storage Engines - Foundations
- 
        SE Foundations - 2025-11-21
- 
        2
Currently all access to underlying SQLite3 DB is serialised. Serialisation imposes significant bottleneck.
TODO:
Enable parallel access to DB:
- Establish separate SQLite3 instance per table; tables are independent of each other
- Use readers-writer lock to let multiple readers access the DB.