Optimizing a thread safe Java NIO / Serialization / FIFO Queue [migrated]
- by trialcodr
I've written a thread safe, persistent FIFO for Serializable items. The reason for reinventing the wheel is that we simply can't afford any third party dependencies in this project and want to keep this really simple.
The problem is it isn't fast enough. Most of it is undoubtedly due to reading and writing directly to disk but I think we should…