Is there an easy hook for looking up Haystack results by Django model PK? Something like (this doesn't work)
SearchQuerySet().filter(pk=12)
The alternative is that I would add an explicit field to the SearchIndex for the model pk, but that seems wasteful, since the queryset results from Haystack contain the underlying django model pk