MAPC / metrofuture-api

JSON API for the MAPC Project Database
0 stars 0 forks source link

Image queries cause memory bloat #4

Open beechnut opened 8 years ago

beechnut commented 8 years ago

In the ImagesController,

Image.where(:FileName => filename).select{ |i| !i.project.nil? }.first

This appears to be causing some memory bloat, likely because of the #select loading everything into memory.

Proposed actions: