Go to the first, previous, next, last section, table of contents.


copyBtree

Function: copyBtree { btree -> newBtree }
file: job.t
package: muf
status: alpha

Copies all the internal and leaf nodes of the given btree and returns the resulting newBtree: The result is a tree which contains the same key-val pairs as the original, but which can be modified without affecting the original. No keys or values are copied.

This operation is currently done inserver, hence can lock up the server for an arbitrary length of time until the operation completes: This is a bug, the fn should be recoded in-db at some point.


Go to the first, previous, next, last section, table of contents.