Re: [Monetdb-developers] monetdbd takes too long to start

2011-12-11 Thread Charalampos Nikolaou
Hi, just used getnameinfo() instead of gethostbyaddr() in openConnectionTCP() and it doesn't gain any time improvement. In addition, inspecting openConnectionUDP(), I saw that it uses getnameinfo() instead of gethostbyaddr() and it is slow as well. What I found, though, is that the trouble is caus

Re: [Monetdb-developers] monetdbd takes too long to start

2011-12-11 Thread Stefan Manegold
On Mon, Dec 12, 2011 at 12:10:33AM +0200, Charalampos Nikolaou wrote: > Hi, > > just used getnameinfo() instead of gethostbyaddr() in > openConnectionTCP() and it doesn't gain any time improvement. In > addition, inspecting openConnectionUDP(), I saw that it uses > getnameinfo() instead of gethost

Re: [Monetdb-developers] monetdbd takes too long to start

2011-12-11 Thread Fabian Groffen
On 12-12-2011 00:10:33 +0200, Charalampos Nikolaou wrote: > Hi, > > just used getnameinfo() instead of gethostbyaddr() in > openConnectionTCP() and it doesn't gain any time improvement. In > addition, inspecting openConnectionUDP(), I saw that it uses > getnameinfo() instead of gethostbyaddr() and