Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a database system where I can store a large document (10-20MB) and do the following:

  • Be able to access content in a given document by location. Example, fetch text between location 100 to 500.
  • Database should return only partial content from the document (without loading the whole document may be). So I am looking for efficiency.
  • Should handle insert, update and delete text blocks in specified location (or range).
  • I want to use these locations to define boundaries. For example, location 100 to 500 is page no. 4

This will be used with a web application where users will create contents in form of continuous documents (example, one document is a simplified Google doc with 100s of pages). I have thought about MongoDB, but I don't know enough about it.

-

What kind of database could I use here? (I am looking for an open-source database)

OR

If I have to write such system on my own what should be my approach and where could I start?

Thank you :)

share|improve this question
MongoDB has a limit of 16MB per document (a database entry in MongoDB lingua). It also doesn't offer tools for string manipulation inside of documents. You could find workarounds for both problems (splitting each document into sections / doing the string manipulation on the application layer), but I don't think that's what you are looking for. – Philipp Nov 26 '12 at 9:39
I read about that limit and I think that limit is probably OK for me as long as I can do index based lookups within that document. I could do what you suggest, about breaking the document into sections. The problem is that when the new text is inserted in the middle I would require to update all the subsequent sections since text blocks will move. It's like in a word doc. if I insert a paragraph, all the subsequent pages need to be updated as text blocks move. – maulik13 Dec 2 '12 at 10:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.