dayorbyte / dispatchd

A go-based AMQP server
MIT License
62 stars 9 forks source link

Coalesce persistent writes #6

Closed dayorbyte closed 8 years ago

dayorbyte commented 8 years ago

We should batch writes for efficiency. Each write is a stand alone boltdb transaction right now which has to be more expensive than doing everything at once,

dayorbyte commented 8 years ago

Done!