vote up 2 vote down star
1
public IEnumerable<ModuleData> ListModules()
{
    foreach (XElement m in Source.Descendants("Module"))
    {
        yield return new ModuleData(m.Element("ModuleID").Value);
    }
}

Initially the above code is great since there is no need to evaluate the entire collection if it is not needed.

However, once all the Modules have been enumerated once, it becomes more expensive to repeatedly query the XDocument when there is no change.

So, as a performance improvement:

public IEnumerable<ModuleData> ListModules()
{
    if (Modules == null)
    {
        Modules = new List<ModuleData>();
        foreach (XElement m in Source.Descendants("Module"))
        {
            Modules.Add(new ModuleData(m.Element("ModuleID").Value, 1, 1));
        }
    }
    return Modules;
}

Which is great if I am repeatedly using the entire list but not so great otherwise.

Is there a middle ground where I can yield return until the entire list has been iterated, then cache it and serve the cache to subsequent requests?

flag

1  
Am I getting sth. wrong? Your code seems to do exactly what you ask for... – Thomas Weller Oct 8 at 10:59
The second code block will always iterate the entire enumerable even though it may not be required to do so. – Daniel Skinner Oct 14 at 11:05

2 Answers

vote up 2 vote down check

You can look at Saving the State of Enumerators which describes how to create lazy list (which caches once iterated items).

link|flag
vote up 0 vote down

I don't see any serious problem with the idea to cache results in a list, just like in the above code. Probably, it would be better to construct the list using ToList() method.

public IEnumerable<ModuleData> ListModules()
{
    if (Modules == null)
    {
        Modules = Source.Descendants("Module")
                      .Select(m => new ModuleData(m.Element("ModuleID").Value, 1, 1)))
                      .ToList();
    }
    return Modules;
}
link|flag
That's much tidier that mine but calling ToList() iterates the entire enumerable anyway so it doesn't solve my problem. – Daniel Skinner Oct 14 at 11:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.