Questions tagged [file-storage]
The file-storage tag has no summary.
58 questions
-2 votes
1 answer
102 views
PHP secure storage for sensitive document uploads [closed]
I need help deciding how to securely store sensitive docs uploaded via a PHP script. I realize I'm not personally qualified for this task (if I was I wouldn't be asking this question) but need to know ...
1 vote
2 answers
184 views
Creating associated resources before creating the main one in a REST setting
I'm not sure how common of a scenario this is, but what are some approaches to creating associated entities before you have the actual main entity they're supposed to be linked to? (basically having ...
-1 votes
1 answer
118 views
File system for abstracting S3 object storage
We're looking for a scalable way to implement a file browser feature backed by a robust object storage system for the files. We were looking at an S3 compatible service, such as MinIO for this. Since ...
-2 votes
2 answers
325 views
Why does most software break or refuse to continue immediately if the folder where their data is stored is not available? [closed]
Most software creates a directory (usually in ~/Library or ~/Library/Application Support in MacOS) to store user preferences, browser history, etc. Most software attempts to create their data ...
-1 votes
1 answer
645 views
Best way to store and fetch image bytes?
I have a case in my startup where I need to fetch images in bytes as fast as possible. At the moment I'm storing the images in Azure Storage then I fetch them on the run and cache them into my ...
5 votes
2 answers
6k views
Share files between microservices
We have a service (lets say FileService) that provides API to store/download files into various stores (S3/local file etc.,) We have a scenario where one microservice (Service A) writes a file to S3 ...
3 votes
2 answers
1k views
In DDD, is it worth it to define a Bounded Context for file access?
I'm designing an editor as a desktop application that opens, saves and saves as documents from files, something very common in fact. I already have Bounded Contexts for my business rules. Naively, I ...
1 vote
0 answers
81 views
Supplying Kubernetes pods with data from a persistent volume and writing back
To keep it simple, I have this service that stores data in a persistent volume. There are pods that are created by an API which use a subset of the stored data to perform an operation and generate new ...