Description Usage Arguments Value See Also Examples
Register an object store service backend, including backend-specific options like authentication, encryption, and compression.
| 1 | register_service(url = "http://localhost:8000", backend = mongoose, ...)
 | 
| url | The service root url including protocol, address and port number. For example  | 
| backend | A service backend provider. The default is  | 
| ... | Backend-specific arguments, see backend documentation for details. | 
A function used by cache, uncache and delete to access the service.
mongoose link{cache} uncache delete
| 1 2 3 4 5 6 7 8 9 10 | # Start an example local mongoose backend server
mongoose_start()
con <- register_service()
# Cache the 'iris' dataset in a directory named 'mydata':
cache(con, iris, "mydata/iris")
# Retrieve it from the cache into a new variable called 'x'
x <- uncache(con, "mydata/iris")
# Delete the entire 'mydata' directory
delete(con, "mydata")
mongoose_stop()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.