ModioAB / caramel

Caramel is a CA Registry Manager
GNU Affero General Public License v3.0
16 stars 5 forks source link

Caramel tool runs OOM with large amount of duplicate certs #50

Closed Spindel closed 5 years ago

Spindel commented 5 years ago

So, due to lazy="subquery" we grab a lot of certificates from the backend, where we actually only ever want a single one.

This means that we would probably be better off using a dynamic query for .first() rather than using lazy load implementation to make a single join query.