Avleen Vig wrote:
> 2) structure the db better.
> the current current db uses a simple key/value pair, where the
> key is the MX hostname and the value is a long string of message
> ID's waiting for delivery. part of the blocking is here; when I
> have multiple queue runners trying to write to the same key's
> value.. :-)
> how can this be improved?
Using BDB with BTree instead of hash, IIRC the btree type allows a key
to be present more than once, or in fact have more than one value, not
sure ...
Nico