2011-04-26 4 views

답변

13

예 :

[[email protected]] help get; 
get <cf>['<key>']; 
get <cf>['<key>']['<col>'] (as <type>)*; 
get <cf>['<key>']['<super>']; 
get <cf>['<key>'][<function>]; 
get <cf>['<key>'][<function>(<super>)][<function>(<col>)]; 
get <cf> where <column> = <value> [and <column> > <value> and ...] [limit <integer>]; 
Default LIMIT is 100. Available operations: =, >, >=, <, <= 
... 

[email protected]] help list; 
list <cf>; 
list <cf>[<startKey>:]; 
list <cf>[<startKey>:<endKey>]; 
list ... limit N; 
List a range of rows in the column or supercolumn family. 

example: 
list Users[j:] limit 40; 
관련 문제