thisismess / django-seo-cascade

django-seo-cascade is a Django app that provides automatic sitemap generation, cascading meta tag blocks, and overrides via the Django admin.
http://www.thisismess.com
12 stars 5 forks source link

Optimization use tuple and sets when determining unique tags #1

Open mandx opened 12 years ago

mandx commented 12 years ago

Use a tuple in templatetags/meta.py:60 instead of a list, so in utils.unique_by() to allow the seen variable to be a set() which is more efficient.

lynndylanhurley commented 12 years ago

Good call - I'll do that today.