Re: [exim] Different MySQL connections for different jobs

Top Pagina
Delete this message
Reply to this message
Auteur: John W. Baxter
Datum:  
Aan: exim-users
Onderwerp: Re: [exim] Different MySQL connections for different jobs
On 9/5/06 6:13 AM, "Philip Hazel" <ph10@???> wrote:

> In MySQL, you can name the database in the query, but you can't name the
> server. Doing something like what you have suggested is actually quite
> complicated because it would impinge on the query caching. More and more
> I feel that the best solution for Exim is to have some kind of SQL proxy
> daemon that takes the complexity out of Exim itself.


We do "easy" reads in Exim directly. We do all writes (and some complex
reads we didn't want to bother writing in Exim form) in (Python) daemons.
(The daemons routinely "outlast" the Exims.)

--John