我目前也在 Django 中开发一个与您非常相似的网站。我将查询集存储在缓存中,其中缓存键是搜索参数的 urlencoded 字符串 - 这样,如果有人执行相同的搜索,它就不必重复昂贵的查询来获得相同的结果。
在您的情况下,您可以从 url 生成参数列表。
form = form_class(request.POST)
if form.is_valid():
cd = form.cleaned_data
persons = .... #expensive queries that fetch the results of search
cache_id = urlencode(cd.items())
#create md5 hash to use in link to results
cache_id = hashlib.md5(cache_id).hexdigest()
cache.set(cache_id, persons, CACHE_TIMEOUT)
#also store form data in cache, so the form can be easily reconstructed from cache id
cache.set(cache_id+'_form', request.POST, CACHE_TIMEOUT)