Any performance recommendation for storing files or images in a database or folder when using

Are there any performance recommendations / practices for storing files or images in a database or server folder when using jHipster. In traditional applications, it is recommended to store files or images in the server folder, but, as you know, angular is used on the web interface. Any trap or strategy that can be shared here?

James relationship

+4
source share
1 answer

I would suggest using disk storage when you need to store a large number of images.

Disk I / O is always faster than connecting to the database, and then it asks for the result.

0

Source: https://habr.com/ru/post/1649255/


All Articles