]> err.no Git - libchamplain/commitdiff
Make the cache expire 1 day
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Fri, 12 Jun 2009 05:20:46 +0000 (01:20 -0400)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Fri, 12 Jun 2009 05:20:46 +0000 (01:20 -0400)
1 hour was ridicoulous and adds unnecessary stress on the servers

champlain/champlain-cache.c

index 7adc7b8c976a230e58924bbd679df7c1e1417cb8..5d5a4a9d2a2cb4faa52941e03b1dbc0ee77f332c 100644 (file)
@@ -463,7 +463,7 @@ champlain_cache_tile_is_expired (ChamplainCache *self,
   gboolean validate_cache = FALSE;
 
   g_get_current_time (now);
-  g_time_val_add (now, (-60ul * 60ul * 1000ul * 1000ul)); // Cache expires 1 hour
+  g_time_val_add (now, (-24ul * 60ul * 60ul * 1000ul * 1000ul)); // Cache expires 1 day
   validate_cache = modified_time->tv_sec < now->tv_sec;
 
   g_free (now);