freeStorage: Free memory used by a librdf storage object

freeStorageR 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)

redland documentation built on May 31, 2023, 6:32 p.m.