Describes where a distributed item should be stored during and after being assembled
Namespace: DistributedFileSystemAssembly: DistributedFileSystem (in DistributedFileSystem.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Memory_Single | 0 | Build the item to a single continuous memory stream. Requires sufficient memory during build. | |
Memory_Blocks | 1 | Build the item to an array of memory streams. More high performance as reduces locking during build. Requires sufficient memory during build. | |
Disk_Single | 2 | Build the item to the local application directory as a single file stream. | |
Disk_Blocks | 3 | Build the item to the local application directory as an array of file streams. More high performance as reduces locking. |
See Also