aboutsummaryrefslogtreecommitdiff
path: root/config.yml.example
diff options
context:
space:
mode:
Diffstat (limited to 'config.yml.example')
-rw-r--r--config.yml.example3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.yml.example b/config.yml.example
index bef8f08..52eae0a 100644
--- a/config.yml.example
+++ b/config.yml.example
@@ -57,6 +57,9 @@ options:
# perfectly. When this flag is enabled, all items which don't match exactly any previously downloaded item are
# considered as new items.
always-new: false
+ # If an item is updated, but has been deleted on the server already, it is re-uploaded when this option is true.
+ # Else it is ignored.
+ reupload-if-updated: false
## Feeds
# Each feed must have a name and a URL. The name must be unique.
-12-10Add caching infrastructureLars Hjemli9-28/+353 This enables internal caching of page output. Page requests are split into four groups: 1) repo listing (front page) 2) repo summary 3) repo pages w/symbolic references in query string 4) repo pages w/constant sha1's in query string Each group has a TTL specified in minutes. When a page is requested, a cached filename is stat(2)'ed and st_mtime is compared to time(2). If TTL has expired (or the file didn't exist), the cached file is regenerated. When generating a cached file, locking is used to avoid parallell processing of the request. If multiple processes tries to aquire the same lock, the ones who fail to get the lock serves the (expired) cached file. If the cached file don't exist, the process instead calls sched_yield(2) before restarting the request processing. Signed-off-by: Lars Hjemli <hjemli@gmail.com>