I use HornetQ to send email.
File attachments are transferred out of range (not as part of the message) using an object storage system. This adds some overhead that I want to avoid for small files by directly placing them in message properties.
I know that I can send huge message bodies, but for large files, storing objects works well, we are talking about small files, and delivery by the value of the property will be very convenient if it works.
What are the considerations for message property values? Can I make them a 100 byte array? Will it slow down (or even break)?
source
share