From 395e2ef53188a04ed0b585363ce55319674792e3 Mon Sep 17 00:00:00 2001 From: Lucas Recoaro Date: Mon, 6 May 2024 18:35:00 +1200 Subject: [PATCH] Improved docs for SQLite --- README.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f051f1e3..285f0914 100644 --- a/README.md +++ b/README.md @@ -54,9 +54,24 @@ In case you have problems setting locally your pre-commit hook you can run the f # 🛡️ Requisitos ## Database SQLite -- [http://www.ch-werner.de/sqliteodbc/](http://www.ch-werner.de/sqliteodbc/) -Mejorar velocidad de la base de datos con `PRAGMA journal_mode=WAL;` -Para mas detalles visiten https://www.sqlite.org/wal.html + +### Installing SQLite ODBC Driver for 32-bit Systems + +To integrate SQLite with ODBC on a 32-bit system, please download the appropriate driver from the following link: +- [SQLite ODBC Driver - 32 bits](http://www.ch-werner.de/sqliteodbc/) + +### Optimizing Database Performance + +To enhance the performance of your SQLite database, consider changing the journal mode to Write-Ahead Logging (WAL) by executing the following SQL command: + +```sql +PRAGMA journal_mode=WAL; +``` + +Write-Ahead Logging can significantly improve the write performance and concurrency of your database. For more information on how WAL mode benefits your database operations, please visit the SQLite WAL documentation: +- [SQLite Write-Ahead Logging](https://www.sqlite.org/wal.html) + +This mode enables most read operations to proceed without locking and allows updates to occur without interfering with reads, thus increasing the performance and scalability of your application when using SQLite. ## Networking - Liberia de networking - [https://github.com/Wolftein/Aurora.Network](https://github.com/Wolftein/Aurora.Network)