@@ -361,17 +361,17 @@ main memory.
361361
362362The available functions are as follows:
363363- [ ` dstore ` ] ( @ref ) saves the dataset to a disk, such as in
364- ``` julia
365- julia > dstore (anotherDataset)
366- `` `
367- ...which, in this case, creates files ` newData-1.slice ` to ` newData-3.slice `
368- that contain the respective parts of the dataset. The precise naming scheme
369- can be specified using the ` files ` parameter.
370- - [ ` dload ` ] ( @ref ) loads the data back into memory
364+ ` dstore(anotherDataset) ` , which, in this case, creates files
365+ ` newData-1.slice ` to ` newData-3.slice ` that contain the respective parts of
366+ the dataset. The precise naming scheme can be specified using the ` files `
367+ parameter.
368+ - [ ` dload ` ] ( @ref ) loads the data back into memory (again using a ` Dinfo `
369+ parameter with dataset description to get the dataset name and the list of
370+ relevant workers)
371371- [ ` dunlink ` ] ( @ref ) removes the corresponding files from the storage
372372
373373Apart from saving the data for later use, this provides a relatively easy way
374- of exchanging data between nodes in a HPC environment. There, the disk storage
374+ to exchange the data among nodes in a HPC environment. There, the disk storage
375375is usually a very fast "scratch space" that is shared among all participants of
376376a computation, and can be used to "broadcast" or "shuffle" the data without any
377377significant overhead.
0 commit comments