Changes between Version 18 and Version 19 of BoincFiles
- Timestamp:
- Jan 5, 2017, 9:45:23 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoincFiles
v18 v19 12 12 The BOINC client transfers files to and from project-operated '''data servers''' using HTTP. 13 13 14 A file of a given name is '''immutable'''. 14 == File immutability == 15 16 The name of a file is called its "physical name". 17 A file of a given physical name is '''immutable'''. 15 18 This means that all replicas of that file are assumed (and required) to be identical. 16 19 If a file is changed, even by a single byte, it becomes a new file, and must be given a different name. 17 20 21 Note: systems for combining or compressing files, like tar and gzip, may add timestamps, 22 so archiving the same set of files can produce differing results. 23 With gzip, the --no-name option suppresses this. 24 18 25 == File properties == 19 26 20 Files have various properties, including:27 You can assign various properties to files, including: 21 28 22 * ''' Physical name:''' unique identifier for thefile.29 * '''Logical name:''' the name by which an application refers to a file. 23 30 Must be nonempty, at most 255 chars, and may not contain '..', '/', or '%'. 24 31 * '''Sticky:''' don't delete file on client (see below).