I want to be able to have an actual list of objects returned when I query, instead of a ResultSet with Hit objects.
Example:
indexer.search(word).prefetch()
this would return a ResultSet object with matching hits, but I would like to have access to the objects themselves. Similar to what:
model.objects.filter(name__icontains=word)
would return. the reason I don't just use the second option is that I cannot search cross-objects of different models, which can be done with indexing.
thanks