document-storage

What are some real use cases for going with a NoSQL Document Store db?

こ雲淡風輕ζ 提交于 2020-01-01 10:09:06
问题 I have been reading documentation and watching screencasts specific to Mongo DB over the past few days and I am at a loss for when a solution like this would be better than a typical pg or mysql environment. Specifically, my question is under what circumstance (w/ use case would be nice) would you want to go the nosql route? Thanks! 回答1: Many disparate writers. Especially when the writers can get segmented due to disconnections in the network, and will later need to resync data that has been

What are some real use cases for going with a NoSQL Document Store db?

廉价感情. 提交于 2020-01-01 10:05:25
问题 I have been reading documentation and watching screencasts specific to Mongo DB over the past few days and I am at a loss for when a solution like this would be better than a typical pg or mysql environment. Specifically, my question is under what circumstance (w/ use case would be nice) would you want to go the nosql route? Thanks! 回答1: Many disparate writers. Especially when the writers can get segmented due to disconnections in the network, and will later need to resync data that has been

CouchDB versioning strategy

牧云@^-^@ 提交于 2019-12-29 17:39:35
问题 Would the following be a viable strategy for implementing versioning(using "example" as a sample document type): Have one original document where the type field is named example_original. Subsequent changes to the document all have type example_change and the id of example_original document as a key. The change would also carry a timestamp. Keep one doc with type example_current that is the result of example_original with all example_change "applied". A new example_change document would

What are some real use cases for going with a NoSQL Document Store db?

荒凉一梦 提交于 2019-12-04 09:34:44
I have been reading documentation and watching screencasts specific to Mongo DB over the past few days and I am at a loss for when a solution like this would be better than a typical pg or mysql environment. Specifically, my question is under what circumstance (w/ use case would be nice) would you want to go the nosql route? Thanks! Many disparate writers. Especially when the writers can get segmented due to disconnections in the network, and will later need to resync data that has been written to on both sides of the bifurcation. This breaks ACID, and while you can solve the problem with

CouchDB versioning strategy

≯℡__Kan透↙ 提交于 2019-11-29 23:06:16
Would the following be a viable strategy for implementing versioning(using "example" as a sample document type): Have one original document where the type field is named example_original. Subsequent changes to the document all have type example_change and the id of example_original document as a key. The change would also carry a timestamp. Keep one doc with type example_current that is the result of example_original with all example_change "applied". A new example_change document would automatically be applied to this document. Finding a specific version would consist in retrieving the

Images in database vs file system

╄→尐↘猪︶ㄣ 提交于 2019-11-27 03:15:52
We have a project coming up where we will be building a whole backend CMS system that will power our entire extranet and intranet with one package. The question I have been trying to find an answer to is which is better: storing images in the database (SQL Server 2005) so we may have integrity, single replication plan, etc OR storing on the file system? One issue we have is that we have multiple servers load balanced that require to have the same data at all times. As of now we have SQL replication taking care of that but file replication seems to be a little tougher. Another concern we have

Images in database vs file system

梦想的初衷 提交于 2019-11-26 10:28:00
问题 We have a project coming up where we will be building a whole backend CMS system that will power our entire extranet and intranet with one package. The question I have been trying to find an answer to is which is better: storing images in the database (SQL Server 2005) so we may have integrity, single replication plan, etc OR storing on the file system? One issue we have is that we have multiple servers load balanced that require to have the same data at all times. As of now we have SQL