We have a need to persist the files in a queue. We are trying to expore RabbitMQ as a middle layer. It looks like RabbitMQ doesn’t support file streaming. The file size is about less than 10MB. Our client doesn’t want to save the files in Disk because of security. What options do I have? Thanks for any suggestions. Are there any other open source tools?
Share
As long as you convert the files to a byte array then you could persist them in a queue. If you have a lot of files I imagine it will take a reasonable amount of memory, but it is possible.