├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── cache-filesystem2.R ├── cache-memory2.R ├── expire-cache.R ├── get_cache_info.R ├── memoise-mixed-backend.R ├── memoise-unexported.R └── memoise-with-result-size-limit.R ├── README.Rmd ├── README.md ├── man ├── cache_filesystem2.Rd ├── cache_memory2.Rd ├── expire_cache.Rd ├── get_cache_dir_info.Rd ├── get_cache_info.Rd ├── get_memoise_info.Rd ├── memoise_with_mixed_backend.Rd └── memoise_with_result_size_limit.Rd └── tests ├── testthat.R └── testthat └── test-result-size-limit.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/cache-filesystem2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/cache-filesystem2.R -------------------------------------------------------------------------------- /R/cache-memory2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/cache-memory2.R -------------------------------------------------------------------------------- /R/expire-cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/expire-cache.R -------------------------------------------------------------------------------- /R/get_cache_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/get_cache_info.R -------------------------------------------------------------------------------- /R/memoise-mixed-backend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/memoise-mixed-backend.R -------------------------------------------------------------------------------- /R/memoise-unexported.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/memoise-unexported.R -------------------------------------------------------------------------------- /R/memoise-with-result-size-limit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/R/memoise-with-result-size-limit.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/README.md -------------------------------------------------------------------------------- /man/cache_filesystem2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/cache_filesystem2.Rd -------------------------------------------------------------------------------- /man/cache_memory2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/cache_memory2.Rd -------------------------------------------------------------------------------- /man/expire_cache.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/expire_cache.Rd -------------------------------------------------------------------------------- /man/get_cache_dir_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/get_cache_dir_info.Rd -------------------------------------------------------------------------------- /man/get_cache_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/get_cache_info.Rd -------------------------------------------------------------------------------- /man/get_memoise_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/get_memoise_info.Rd -------------------------------------------------------------------------------- /man/memoise_with_mixed_backend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/memoise_with_mixed_backend.Rd -------------------------------------------------------------------------------- /man/memoise_with_result_size_limit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/man/memoise_with_result_size_limit.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-result-size-limit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/memoisetools/HEAD/tests/testthat/test-result-size-limit.R --------------------------------------------------------------------------------