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) 方法,它允许我查看一个行键是否(至少)有一个关联的单元格。卡桑德拉呢?好像没有对应的功能
只需请求一列。如果返回任何内容,则该行存在。
例如,在 pycassa 中,你会这样做:
if column_family.get(key, column_count=1): print key, "exists"
通过 CQL 3,根据您的架构,您只需执行简单的选择,例如:
SELECT * FROM mycf WHERE key = 'foo'