Remote db server on linux

Hi,
Some time ago your advice for remotedb on Linux was to use Indy server.
Is it still the case ?
In one of the post about this you talked about the stateless issue.
Could you tell more about the difference between http.sys under Windows and Apache under Linux in this context?

Yes.

With Indy and http.sys dispatchers, your server code runs in your application. You can have full control of your application memory an instances.

With Apache, your "application" is just a module that plugs into Apache. The full application is Apache itself, and it's up to Apache to decide when and how many instances of the worker will be launched. So you can have multiple process instances running your same code, and only Apache which instance will process an incoming request.