Flush all changes to disk. This only affects the data in the Andromeda temp folder.

This function is for advanced users, who wish to share the same underlying object with other processes, which is very dangerous if you don't know what you're doing.

flushAndromeda(andromeda)

Arguments

andromeda

An Andromeda object.

Value

This function does not return anything, but is executed for its side-effect.

Examples

andr <- andromeda()
andr$cars <- cars

flushAndromeda(andr)
#> [1] 0
# The database in andromeda temp is now fully up-to-date.

close(andr)