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.
RangeSliceQuery有一种方便的方法来仅提取密钥 -但我在(like )setReturnKeysOnly()中找不到类似的东西。SliceQuerysetReturnColumnNamesOnly()
RangeSliceQuery
setReturnKeysOnly()
SliceQuery
setReturnColumnNamesOnly()
Hector API 中是否提供了此功能?
如果您只想获取属于特定列族的列名,我可以向您展示如何使用 cql 实现它
select * from system.schema_columns WHERE keyspace_name='#KS' AND columnfamily_name='#CF' allow filtering;
现在我认为使用你的 hector api 实现同样的事情不会是很大的技术障碍。
干杯