How to Build Your Own Document Management System

How to Build Your Own Document Management System? Can anyone answer

Define “Document Management System”. (And for that matter, “your own”… your own as opposed to whose?)

I have only done it using blobs in Postgresql. This means that documents are stored in the database as binary large objects (blob). Fast storing and retrieving but not suitable for bigger documents.

I plan to add an S3 object storage to my VPS. And store only the S3 link to the document in the database. The object storage can be TB and is most suited for archiving. And not for frequently accessed document. In that case I plan to use traditional block storage and only store the file address in the database in about the same way as S3.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.