My proxy server is spending a lot of time resolving the domain names,is there a way to make gethostbyname cache the result?

link|improve this question

61% accept rate
Slightly tangential, but gethostbyname is an obsolete function you should not be using. man getaddrinfo. – R.. May 23 '11 at 21:01
feedback

1 Answer

up vote 2 down vote accepted

Use nscd, the name serivce caching daemon

link|improve this answer
do you mean that after this service is up,subsequent calls by gethostbyname will automatically be cached? – DriverBoy May 23 '11 at 8:34
This is exactly what it does. Just have a look at the man page. Caching of negative and positive results can be configured separatley, AFAIK – drhirsch May 23 '11 at 9:23
Sounds like a silly system-specific approach to doing something that could just as easily be accomplished with a caching/proxy nameserver on localhost... – R.. May 23 '11 at 21:00
Wrong point of view. A caching name server is the heavyweight approach to do something which can be easily accomplished by nscd :-) nscd does does have a slightly different scope, as it does cache getpwnam() and getgrpnam(). Very effective in avoiding heavy brain damage if you are on a network with a lagging NIS server. – drhirsch May 23 '11 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.