Questions tagged [document-storage]

25 questions
41
votes
10 answers

Images in database vs file system

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…
Jesse
  • 411
  • 1
  • 4
  • 3
23
votes
4 answers

CouchDB versioning strategy

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…
mac
  • 9,885
  • 4
  • 36
  • 51
17
votes
8 answers

Embeddable document store database

Is there something akin to SQLite but a document-oriented database as opposed to an RDBMS? Orient seemed to be something similar to what I was looking for, but it is written in Java, and I'm looking for something I can use from C++. Ideally this…
Varun Madiath
  • 3,152
  • 4
  • 30
  • 46
8
votes
5 answers

Are there any document storages on react native?

It would be great to have something similar to PouchDB. Current key-value storage (AsyncStorage) is definitely not enough to store and query data.
mrded
  • 4,674
  • 2
  • 34
  • 36
6
votes
3 answers

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

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…
Mario Zigliotto
  • 8,315
  • 7
  • 52
  • 71
4
votes
4 answers

How save text, svg, html, css all together efficiently

In an application, I am using Fabric.js, which lets users write text, draw SVG's, insert images etc. I want to know, what is the best way to store this data. Requirements are: Ability to query the data(text), which tells me that i should store it…
Jatin Ganhotra
  • 6,825
  • 6
  • 48
  • 71
4
votes
1 answer

How to move all documents from one collection to a new one with no routing key specified (6.3.0)

Have a collection c1 that has 400,000 documents and c2 with no documents (new collection). No routing key is specified in either collection. Trying to use the migrate Collections API endpoint found/described in the documentation. Since no routing…
KLeevy77
  • 41
  • 2
3
votes
3 answers

svn to store documents for the purpose of change management

Is it a good idea to keep project related documents in svn ? is there any document management app (sharepoint?) you can recommend for this ? The question is for a medium size software house (20 devs).
mete
  • 589
  • 2
  • 6
  • 17
2
votes
1 answer

Limit to appending children to a document in NoSQL?

When an example of an object owning many children is given with a document database (like couchdb) it is always recomended that the children be appended to the parent object. In the case of a blog post, this means that you add all the comments as…
Xeoncross
  • 55,620
  • 80
  • 262
  • 364
2
votes
2 answers

Create a Research Database

I would like to create a research database where I can store and retrieve articles (PDF files). Any suggestions? I have looked at several relational database tutorials and none of them reference the storage and retrieval of documents, only raw data.
Kim
  • 297
  • 1
  • 5
  • 15
2
votes
1 answer

Implement Archive/Backup for Liferay 6.2 Document Library

Need to implement archive/backup features for Liferay 6.2 Document Library with the AdvancedFileSystemStore as given below. dl.store.impl=com.liferay.portlet.documentlibrary.store.AdvancedFileSystemStore I have the two below scenarios. Please…
Ashok Goli
  • 5,043
  • 8
  • 38
  • 68
2
votes
2 answers

Key Value storage without a file system?

I am working on an application, where we are writing lots and lots of key value pairs. On production the database size will run into hundreds of Terabytes, even multiple Petabytes. The keys are 20 bytes and the value is maximum 128 KB, and very…
Tarandeep Gill
  • 1,506
  • 18
  • 34
2
votes
1 answer

RavenDB data modeling

I've recently started to look at RavenDB, and I've tried to see if it is a fit for some of our projects. However I have run into some questions regarding the "right" way to model a simple data structure. I'll try to describe it: There are 3 types…
JohannesH
  • 6,430
  • 5
  • 37
  • 71
1
vote
2 answers

File-based Document Storage in android

I'm in the early stages of a note-taking application for android and I'm hoping that somebody can point me to a nice solution for storing the note data. Ideally, I'm looking to have a solution where: Each note document is a separate file (for…
zpinter
  • 2,232
  • 2
  • 23
  • 29
1
vote
1 answer

GoogleDrive as a template engine for PDF generation? Possible?

I have a question on how the following approach could be implemented / is feasible for using GoogleDrive, GoogleDocs, GoogleSheets via API as a PDF generator and document storage from templates where the templates itself are stored on the users…
1
2