I have a Silverlight application and it will be able to update documents and save it, but which approach is better?
Save files against a database, such as blob field into a table
OR
Save against a folder structure with a table about where the files are saved into the disk
OR
Something else?
I've looked for some information and I didn't get a clear answer about the matter.
Answer: 1
Saving into disk is better if you don't change the locations of the file frequently. Storing everything into database as blob will increase the size of your database rapidly which reduces the performance of the system. Moreover if you select lot of blob objects from the database at the same time then it will consume lot of memory and reduce performance.
by : Ahmed Tanvirhttp://stackoverflow.com/users/1278735
No comments:
Post a Comment
Send us your comment related to the topic mentioned on the blog