List jobs in registry
registry_ls.RdShow all jobs stored in the registry with their status and metadata.
Examples
# \donttest{
# List all jobs
registry_ls()
#> Registry not found: /tmp/RtmpfPLhwl/parade-registry
#> [1] name status created
#> <0 rows> (or 0-length row.names)
# List jobs matching pattern
registry_ls(pattern = "analysis_*")
#> Registry not found: /tmp/RtmpfPLhwl/parade-registry
#> [1] name status created
#> <0 rows> (or 0-length row.names)
# List most recent 10 jobs
registry_ls(limit = 10)
#> Registry not found: /tmp/RtmpfPLhwl/parade-registry
#> [1] name status created
#> <0 rows> (or 0-length row.names)
# }