From 5816096ff325bc2ca45e2f1737dcba1edf44fc5d Mon Sep 17 00:00:00 2001 From: Denis Defreyne Date: Sun, 3 Jan 2016 14:43:09 +0100 Subject: [PATCH] Describe lazy-loading content alternative --- active/0000-lazy-load-items.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/active/0000-lazy-load-items.adoc b/active/0000-lazy-load-items.adoc index b9b5338..8b7a57c 100644 --- a/active/0000-lazy-load-items.adoc +++ b/active/0000-lazy-load-items.adoc @@ -23,7 +23,9 @@ Do not load all items into memory, but compile them one-by-one. == Alternatives -(wip) +* Rather than lazy-loading items, load all items into memory but lazy-load their content and attributes instead. This likely will not give much of a performance gain (if any at all), since the content and attributes for each item needs to be loaded at some point anyway, in order for the checksum to be calculated. ++ +To get around this problem, at the end of compilation, the previous checksum of an item could be reused if neither their content nor attributes were loaded. == Unresolved questions