ASOR-package(ASOR)R Documentation

Memory management by storing and accessing objects out of memory.

Description

These functions provide a convenient front-end to save(), load(), delayedAssign(), attach(), remove() and objects() which easily allows objects to be stored out of memory and retrieved as required.

Details

Package: ASOR
Type: Package
Version: 1.0
Date: 2006-02-04
License: What license is it under?

Use Save to store objects out of memory.

Use Remove to remove objects permanantly.

Use Attach to attached out of memory saved collections of objects to the search path.

Use Objects to see what objects have been saved out of memory.

Author(s)

Bill Venables, based on an idea and code of David Brahm.

Maintainer: Bill Venables <Bill.Venables@CSIRO.au>

References

None

See Also

Package g.data of David Brahm; Package filehash of Roger Peng.

Examples

library(ASOR)
Attach() # attach existing object store
         # or create new one
obj1 <- 1
obj2 <- 2
Save(obj1, obj2)  # move both objects to store
Objects()         # find which objects in store
Attach(RLib2)     # attach a second store
Save(Objects(), lib = RLib2)
Remove(obj1, obj2) # permanently remove two from default

[Package ASOR version 0.1 Index]