Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HBaseにはHTable.exists(Get)メソッドがあり、行キーに(少なくとも)1つのセルが関連付けられているかどうかを確認できます。カサンドラはどうですか?そのような対応する機能はないようです
1つの列をリクエストするだけです。何かが返された場合、その行は存在します。
たとえば、pycassaでは次のようにします。
if column_family.get(key, column_count=1): print key, "exists"
CQL 3では、スキーマに応じて、次のような単純な選択を行うだけです。
SELECT * FROM mycf WHERE key = 'foo'