I am using the package net.spy.memcached and noticed that the set method uses a Future<Boolean> but my code is not using that return value, i.e. I am not invoking a get on the Future to see the result of the set.
Can anyone tell me if the set operation has a timeout even if I don't specify one? I am a bit concerned that there is no timeout and I can take up system resources. Just today I got over 3k timeouts on the get call, who is using the Future to verify the result. I am using the timeout feature of Future on the get methods I have. Is it recommended that I use that for the set/add/delete methods as well? Harry
