I am trying to create an autocomplete textfield for selecting a Mercurial revision (full node id). I can use hg log --template '{node}\n' to get all revisions, but it takes over 1s for that command to complete.
When the user starts typing (say 1d34, for instance) in the textfield, I want to do something like hg log --rev 1d34 --template '{node}\n' so that the resulting list is all revisions beginning with 1d34. Unfortunately, Mercurial gives an error (ambiguous identifier!) if more than one revision matches the identifier.
Filtering the list takes too long since the hg log command has to complete first, so I'm looking for a quicker solution. I could cache the list, but the repository gets changed often so I keep coming back to the slow hg log command.
logfrom currenttipto the most recently retrieved one? Unless you're rewriting history, new changesets won't invalidate your cache up to that point. – shambulator Sep 20 '12 at 23:26