Overview
| Comment: | Added database notes |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
57183d69b5196b9fa22a620c9563d859 |
| User & Date: | rkeene on 2014-09-07 11:00:42 |
| Other Links: | manifest | tags |
Context
|
2014-09-07
| ||
| 11:01 | Formatting fixes check-in: 4c07c8ed11 user: rkeene tags: trunk | |
| 11:00 | Added database notes check-in: 57183d69b5 user: rkeene tags: trunk | |
| 10:44 | Working on making the Tcl result usable by C check-in: 9b31b33a93 user: rkeene tags: trunk | |
Changes
Modified README.md from [ab12e62b97] to [ebe9eec651].
1 2 3 4 5 6 7 8 9 10 11 12 | AppFS ===== It's sort of like LazyFS. Paths ----- AppFS should normally be mounted on "/opt/appfs". /opt/appfs/hostname Fetches: http://hostname/appfs/index Contains CSV file: hash,extraData | < > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
AppFS
=====
It's sort of like LazyFS.
Paths
-----
AppFS should normally be mounted on "/opt/appfs".
/opt/appfs/hostname
Fetches: http://hostname/appfs/index
Contains CSV file: hash,extraData
Fetches: http://hostname/appfs/sha1/<hash>
Contains CSV file: package,version,os,cpuArch,sha1,isLatest
/opt/appfs/hostname/package/os-cpuArch/version
/opt/appfs/hostname/sha1/
Fetches: http://hostname/appfs/sha1/<sha1>
Contains CSV file:
type,time,extraData,name
type == directory; extraData = (null)
type == symlink; extraData = source
type == file; extraData = size,sha1
/opt/appfs/hostname/{sha1,package/os-cpuArch/version}/file
Fetches: http://hostname/appfs/sha1/<sha1>
Database
--------
hostname_to_packages(hostname, sha1);
package_info(sha1 PRIMARY KEY, package, version, os, cpuArch, isLatest)
package_to_files(package_sha1, type, time, source, size, file_sha1, name)
|