I guess you could create a custom datatype to upload it to a database or start by investigating a package like this which pushes things to S3, but would you really want a database call every time someone references an image?
The best approach would be to have the images in the files system so that get cached by the webserver, why do you want to call the database for every image ?
is it possible to store media files in MS Sql server instead of physcial "Media" folder in Umbraco CMS?
is it possible to store media files in MS Sql server instead of physcial "Media" folder in Umbraco CMS?
I guess you could create a custom datatype to upload it to a database or start by investigating a package like this which pushes things to S3, but would you really want a database call every time someone references an image?
Here's the package I was talking about: https://github.com/ElijahGlover/Umbraco-S3-Provider
Dear Amir,
Thanks for reply,
Yes, I want to call database every time to render image in frontend as well backoffice.
kindly suggest which is best approach to overcome this scenario.
Regards, Karthik
kindly suggest which is best approach to overcome above scenario.
Tx.
The best approach would be to have the images in the files system so that get cached by the webserver, why do you want to call the database for every image ?
is working on a reply...