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: GPL

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

Use Save to store objects out of memory.

Use Remove to remove objects permanantly.

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

g.data

Examples

library(ASOR)
Attach() # attach existing object store
         # or create new one
Save(objects()) # move all objects to store
Objects() # find which objects in store
Remove(obj1, obj2) # permanently remove two

[Package ASOR version 1.0 Index]