phpcassa で列ファミリーを作成しました。以下はコードです
$sys = new SystemManager('127.0.0.1');
$sys->create_column_family('demo', 'Users');
$pool = new ConnectionPool('demo', array('localhost'));
$users = new ColumnFamily($pool, 'Users');
$users->insert('user0', array("name" => "joe", "state" => "TX"));
$users->insert('user1', array("name" => "bob", "state" => "CA"));
cqlsh を使用してデモ キースペースに移動すると、そこからレコードを選択できません。
cqlsh:demo> select * from Users;
Bad Request: unconfigured columnfamily users
cqlsh:demo> select * from users;
Bad Request: unconfigured columnfamily users
また、逆の場合、CREATE TABLE 構文 phpcassa を使用して cqlsh でテーブルを作成しているときに、それを見つけることができず、NOTFOUND 例外をスローします。