summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-11-06 15:55:19 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-01-23 10:04:08 +0000
commit88f0a35ba71044b84161e3d8d9e6bbb1314118cd (patch)
tree181afe7b3f072fea90090e17a40f90a427ce78b0 /morphlib/plugins
parent854983f275dd6b6f3f8185403f4a618e8bad8c81 (diff)
downloadmorph-88f0a35ba71044b84161e3d8d9e6bbb1314118cd.tar.gz
Add an LRU cache for resolved tree refs
This uses the PyLRU module, from: <https://pypi.python.org/pypi/pylru/1.0.6>. Python 3.2 and newer provide a built-in LRU cache, but this is specifically for in-memory use. See <http://bugs.python.org/issue17528>. Git commits are immutable, so caching information about their contents is fairly easy and trouble-free. There's no danger of the cache becoming stale.
Diffstat (limited to 'morphlib/plugins')
-rw-r--r--morphlib/plugins/list_artifacts_plugin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/plugins/list_artifacts_plugin.py b/morphlib/plugins/list_artifacts_plugin.py
index 6944cff4..53056bad 100644
--- a/morphlib/plugins/list_artifacts_plugin.py
+++ b/morphlib/plugins/list_artifacts_plugin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2014 Codethink Limited
+# Copyright (C) 2014-2015 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -86,6 +86,7 @@ class ListArtifactsPlugin(cliapp.Plugin):
msg='Creating source pool for %s' % system_filename, chatty=True)
source_pool = morphlib.sourceresolver.create_source_pool(
self.lrc, self.rrc, repo, ref, system_filename,
+ cachedir=self.app.settings['cachedir'],
update_repos = not self.app.settings['no-git-update'],
status_cb=self.app.status)