I am having a problem on my local machine when I am doing testing. I have a pool of memcached servers that my PHP code is trying to access. Thing is, these are private IPs so my local box's code doesn't have access to them.
The problem I'm having is that the getDelayed() call hangs for 8 seconds waiting for a connection locally. Is there anywhere to adjust the timeout period?
Why does it even need to wait for a connection before returning? My understanding was that getDelayed() was supposed to be an asynchronous call but control is not yielding back from the function until it times out.