Review On SQLite
Use Cases and Deployment Scope
scope of our use case includes storing intermediate data during ETL process. we use it for light analytics for operation dashboards.
Pros
- It basically work well on offline mode , easily syncs to backend file when connectivity restored.
- SQLite provides transactional safety, even on unreliable devices like mobile phones and Raspberry Pis.
- It provides fast reads & reliable writes.
- easy to setup on various operating system.
Cons
- it misses advanced SQL features.
- its not suitable for big-data or high-throughput workflows.
- Schema integrations can be more hectic than in PostgreSQL or MySQL.
Return on Investment
- we had major cost savings while using it.
- faster deployment helps with our productivity.
- it increase our reliability for offline work.
- Reduced ROI due to scalability and concurrency limitations



