减少sorl缩略图sql查询?

时间:2013-05-02 11:57:12

标签: python django django-templates sorl-thumbnail

我正在使用sorl-thumbnail为图像列表生成缩略图。基本上我的代码看起来像

{% for image in image_list %}

    {% thumbnail image.image "158x158" crop="center" as im %}

    {% endthumbnail %}

{% endfor %}

问题是因为我在for循环中做了缩略图,每隔一段时间,sorl-thumbnail需要运行sql查询,在我的情况下,每个图像一次查询,会导致巨大的db瓶颈。我需要这个过程更高效,比如一次在列表中做所有缩略图查询吗?

那么如何才能使这个缩略图创建/检索过程更有效率呢?

0 个答案:

没有答案