DEV Community

Discussion on: What task/micro-app would you recommend to learn Sidekiq/Redis/Mongo/etc in action (learn by doing)?

Collapse
 
rhymes profile image
rhymes

An image directory? The user uploads the an image with a title, this image gets processed and catalogued, both the title and the image EXIF data is fed to Elasticsearch and then you have a page where a person can search for indexed images and you match the query inputed by the user with the data you have in ES.

Sidekiq will run the image processing code. For example, this image on flickr (click "show exif") has metadata which could be used for search or filtering.

Collapse
 
ark profile image
Ark Shraier

cool, thanks!