While I am retrieving data from Cassandra using Thrift and PHP, it always takes 60 seconds. Why?

link|improve this question

0% accept rate
2  
It sounds like something is timing out then allowing the code to read the data. This question needs more information. – Clutch May 5 '10 at 14:11
Sounds like a riddle. To get to the other side? – webbiedave May 5 '10 at 14:33
Your Turbo Encabulator needs to be replaced. That's my best guess. – mattbasta May 5 '10 at 15:23
feedback

1 Answer

I got it.

There were two entries in my files

$this->socket->setRecvTimeout(60000);
$this->socket->setSendTimeout(60000);

I have removed them and it's working fine

link|improve this answer
Good job. Thanks for posting the answer as well so others with the same problem may be helped by it. – webbiedave May 5 '10 at 15:19
feedback

Your Answer

 
or
required, but never shown

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