freeStorage {redland} | R Documentation |
Free memory used by a librdf storage object
Description
After this method is called, the Storage object is no longer usable and should
be deleted "rm(storage)"
and a new object created.
Usage
freeStorage(.Object)
## S4 method for signature 'Storage'
freeStorage(.Object)
Arguments
.Object |
a Storage object to free memory for |
Examples
world <- new("World")
storage <- new("Storage", world, "hashes", name="", options="hash-type='memory'")
# At this point we would perform some operations using the storage object.
# See '?redland' for a complete example.
# When the Storage object is no longer needed, the resources it had allocated can be freed.
status <- freeStorage(storage)
rm(storage)
[Package redland version 1.0.17-18 Index]