powered by
Creates a new RDF store, either in-memory or backed by persistent storage.
rdf_store(path = NULL)
An RDF store handle (integer)
Optional path for persistent storage. If NULL (default), creates an in-memory store.
# In-memory store store <- rdf_store() # Persistent store (not supported on Windows) # \donttest{ if (.Platform$OS.type != "windows") { store <- rdf_store(file.path(tempdir(), "my_store")) } # }
Run the code above in your browser using DataLab