-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
38 lines (38 loc) · 1.11 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Package: filecacher
Type: Package
Title: File Cacher
Version: 0.2.9
Authors@R:
person("Or", "Gadish", email = "orgadish@gmail.com", role = c("aut", "cre", "cph"))
Description:
The main functions in this package are with_cache() and cached_read().
The former is a simple way to cache an R object into a file on disk,
using 'cachem'. The latter is a wrapper around any standard read function,
but caches both the output and the file list info. If the input file list
info hasn't changed, the cache is used; otherwise, the original files are
re-read. This can save time if the original operation requires reading from
many files, and/or involves lots of processing.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Depends:
R (>= 4.1.0)
Imports:
cachem,
glue,
here,
purrr,
rlang,
utils,
vctrs
RoxygenNote: 7.2.3
Suggests:
arrow,
data.table,
readr,
testthat (>= 3.0.0),
withr
Config/testthat/edition: 3
Roxygen: list(markdown = TRUE)
URL: https://github.com/orgadish/filecacher
BugReports: https://github.com/orgadish/filecacher/issues