By default, sqlite stores temp tables in /tmp (Or windows equivalent). If you are building large temporary tables
and don't have a large /tmp directory, you can get "database or disk is full" errors.
If you have a lot of RAM you can set store
to "RAM" and the temp files will be stored in RAM
rather than in /tmp. This could also speed things up.
1 | temp_location(db, store = c("tmp", "RAM"))
|
db |
a database connection |
store |
character vector either "tmp" or "RAM" |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.