Method | Description | |
---|---|---|
DeleteColumns ( string table, string rowKey, string columns ) : void | ||
DeleteRow ( string table, string rowKey ) : void | ||
GetColumns ( string table, string rowKey, string columns ) : |
Get spcified columns from paritcular row or rows You can specified column families or columns, if you want many columns you should GetColumns("users","userlogin","info:name,info:email,friends") - retrives only columns info:name , info:email and all things in column family You can also use "*" for rows to return many rows GetColumns("users","k*","info:name,info:email,friends") - return all users whose login starts form k but if some user doesn't have one of specified columns the stargete returns error "http 404" |
|
GetRow ( string table, string rowKey ) : |
Get row or rows from table You can use "*" for retrving many rows as follows GetRow("users","k*") - retrives all rows from table useres which keys starts from 'k' |
|
SetNewRow ( string table, |
||
SetNewRows ( string table, |
||
StargateClient ( string serviceAddress ) : System |
Method | Description | |
---|---|---|
SetDefaultHeaders ( ) : void |
public DeleteColumns ( string table, string rowKey, string columns ) : void | ||
table | string | |
rowKey | string | |
columns | string | |
return | void |
public DeleteRow ( string table, string rowKey ) : void | ||
table | string | |
rowKey | string | |
return | void |
public GetColumns ( string table, string rowKey, string columns ) : |
||
table | string | |
rowKey | string | |
columns | string | list of comma separated column or column family names |
return |
public GetRow ( string table, string rowKey ) : |
||
table | string | |
rowKey | string | |
return |
public SetNewRow ( string table, |
||
table | string | |
row | ||
return | void |
public SetNewRows ( string table, |
||
table | string | |
rows | ||
return | void |
public StargateClient ( string serviceAddress ) : System | ||
serviceAddress | string | |
return | System |