storr icon indicating copy to clipboard operation
storr copied to clipboard

:package: Object cacher for R

Results 45 storr issues
Sort by recently updated
recently updated
newest added

Hi, It would be nice to add [qs](https://github.com/traversc/qs) as drop in replacement for the RDS.

https://www.r-project.org/nosvn/R.check/r-devel-linux-x86_64-debian-clang/storr-00check.html

I am curious about your overall design considerations of the `storr`/driver implementation, how well you think they played out, and what you might do differently if you were to rewrite...

This PR implements the original proposal in https://github.com/richfitz/storr/issues/121#issue-579314857. ## Changes 1. The RDS driver now has a `clear()` method, which uses `unlink(recursive = TRUE)` instead of deleting keys one by...

`clear()` removes keys one by one, which is slower than it could be for RDS `storr`s. https://github.com/richfitz/storr/blob/0c64f1efb0574b46059a962de9d264a74d448843/R/storr.R#L207 ``` r library(storr) init_storr

Originally posted here: https://github.com/ropensci/drake/issues/1201 # Overview Within my drake workflow, when trying to store a particular dataframe, I keep getting the same error: ``` Error: NOT NULL constraint failed: datatable.value...

Is it feasible to conveniently read from a remote storr through an ssh connection? The example I'm thinking of is reading from a ``drake`` cache on an HPC system to...

Windows doesn't generally like colons in the filenames. Using `storr_rds`, though, keys with embedded colons are accepted but silently fail. Windows: ```r p

@ldecicco-usgs has raised this issue as it applies to drake. It can be challenging to commit/upload all the tiny files of an RDS storr to GitHub/Dropbox/Google Drive. I think a...

Continuing from #106. I propose we try [this solution](https://stackoverflow.com/questions/50297237/raw-binary-data-too-big-to-write-to-disk-how-to-write-chunk-wise-to-disk-app) and append to RDS files in chunks using `writeBin()`. From the benchmarks in https://github.com/richfitz/storr/issues/103#issuecomment-502097274, I think it will be well worth...