Description
Thumbnail images load very slowly. This is likely due to each thumbnail image requiring a separate network request to pull the thumbnail image data from Solr.
The thumbnail image data could be returned in the original Solr search request, but it is not currently because it is in a separate document that would have to be joined. Unknown if that would negatively impact performance loading results from the search itself. We would not want to delay the loading of the search result response itself; even 1-2 seconds in delay would be undesirable and we wouldn't want to make this change.
Another option to explore would be caching the thumbnail images or perhaps storing them on disk somewhere.
Done Looks Like
Description
Thumbnail images load very slowly. This is likely due to each thumbnail image requiring a separate network request to pull the thumbnail image data from Solr.
The thumbnail image data could be returned in the original Solr search request, but it is not currently because it is in a separate document that would have to be joined. Unknown if that would negatively impact performance loading results from the search itself. We would not want to delay the loading of the search result response itself; even 1-2 seconds in delay would be undesirable and we wouldn't want to make this change.
Another option to explore would be caching the thumbnail images or perhaps storing them on disk somewhere.
Done Looks Like