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 :)