Skip to content

Commit 465df77

Browse files
gaborcsardimaelle
andauthored
Apply suggestions from code review
Co-authored-by: Maëlle Salmon <[email protected]>
1 parent 71450bc commit 465df77

File tree

1 file changed

+1
-1
lines changed
  • content/post/2021-03-10-rsqlite-parallel

1 file changed

+1
-1
lines changed

content/post/2021-03-10-rsqlite-parallel/index.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
output: hugodown::hugo_document
1414
---
1515

16-
[SQLite](https://www.sqlite.org/index.html) is a great, full featured SQL database engine. Most likely it is used more than [all other database engines combined](https://www.sqlite.org/mostdeployed.html). The [RSQLite](https://github.com/r-dbi/RSQLite) R package embeds SQLite, and lets you query and manipulate SQLite databases from R. It is used in Bioconductor data packages, many deployed Shiny apps, and several other packages and projects. In this post I show how to make it safer to use RSQLite concurrently, from multiple processes.
16+
[SQLite](https://www.sqlite.org/index.html) is a great, full featured SQL database engine. Most likely it is used more than [all other database engines combined](https://www.sqlite.org/mostdeployed.html). The [RSQLite](https://rsqlite.r-dbi.org/) R package embeds SQLite, and lets you query and manipulate SQLite databases from R. It is used in Bioconductor data packages, many deployed Shiny apps, and several other packages and projects. In this post I show how to make it safer to use RSQLite concurrently, from multiple processes.
1717

1818
Note that this is an oversimplified description of how SQLite works and I will not talk about different types of locks, WAL mode, etc. Please see the SQLite documentation for the details.
1919

0 commit comments

Comments
 (0)