Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make sure PHP is using TBinaryProtocolAccelerated

How can I make sure PHP is using TBinaryProtocolAccelerated and not TBinaryProtocol as the protocol?

I am using PHP5 in Ubuntu Server.

like image 716
jnbdz Avatar asked Apr 02 '26 17:04

jnbdz


1 Answers

TBinaryProtocolAccelerated and TBinaryProtocol are specific to Thrift, not the PHP itself.

Have a look at https://wiki.fourkitchens.com/display/PF/Using+Cassandra+with+PHP. What you need to do is use TBinaryProtocolAccelerated class instead of TBinaryProtocol.

Hope this helps.

like image 75
Jan Molak Avatar answered Apr 04 '26 06:04

Jan Molak