christianwgd / django-bootstrap-icons

A quick way to add Bootstrap Icons with Django template tags.
MIT License
24 stars 7 forks source link

Template rendering is insanely slow when using this package #32

Closed ClimenteA closed 2 months ago

ClimenteA commented 2 months ago

Hi,

Not sure what happens, but I have a table with 100 rows in which I render some icons and it takes 20 seconds to finish. I took me a while to figure out what caused that slowdown :sweat_smile: .

christianwgd commented 2 months ago

Did you enable the icon cache like described in the doc here? This should prevent these extended loading times.

christianwgd commented 2 months ago

Just tested this by myself and added four different icons one hundert times in a table. With icon cache enabled I had no findings on unusual response times.

You can find this sample code in the test app in the "samples" template.

ClimenteA commented 2 months ago

Missed that. I didn't add the cache dir.

Thank you for your response!