Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/client/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar_network/client/__init__.py')
-rw-r--r--sugar_network/client/__init__.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/sugar_network/client/__init__.py b/sugar_network/client/__init__.py
index 077027a..d9e68fd 100644
--- a/sugar_network/client/__init__.py
+++ b/sugar_network/client/__init__.py
@@ -120,10 +120,17 @@ accept_language = Option(
name='accept-language', short_option='-l')
cache_limit = Option(
- 'the minimal disk free space, in percents, to preserve '
- 'while recycling disk cache',
+ 'the minimal disk free space, in bytes, to preserve while recycling '
+ 'disk cache; the final limit will be a minimal between --cache-limit '
+ 'and --cache-limit-percent',
default=10, type_cast=int, name='cache-limit')
+cache_limit_percent = Option(
+ 'the minimal disk free space, in percentage terms, to preserve while '
+ 'recycling disk cache; the final limit will be a minimal between '
+ '--cache-limit and --cache-limit-percent',
+ default=1024 * 1024 * 10, type_cast=int, name='cache-limit-percent')
+
cache_lifetime = Option(
'the number of days to keep unused objects on disk cache '
'before recycling',