Possible Duplicate:
how to have 64 bit integer on PHP?
Is it possible to use a 64-bit Long integer as a key in Cassandra using PHPCassa?
For example,
$pool = new ConnectionPool('main', array("127.0.0.1"));
$table = new ColumnFamily($pool, 'messages'); // ColumnFamily
$table->insert("5601379860409749867", array("sampleKey" => "sampleValue));
Every time that I do the insert, I get 0 for the key. In this table, the key_validation_class is LongType.