| |
|
| |
### Improved I/O Usage
|
| |
|
| - |
Radicle uses `sqlite` for local state storage, and it was configured to use `journal_mode = WAL`, and the default value of `synchronous = FULL`.``
|
| + |
Radicle uses `sqlite` for local state storage, and it was configured to use `journal_mode = WAL`, and the default value of `synchronous = FULL`.
|
| |
It was recently found that this combination would result in a high amount of I/O operations for a long running node.
|
| |
The `journal_mode` and `synchronous` pragmas are now configurable from `rad config edit`.
|
| |
The new default values for both are `WAL` and `NORMAL`, respectively. This results in less I/O operations.
|