Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Lucene-hadoop Wiki" for 
change notification.

The following page has been changed by BryanDuxbury:
http://wiki.apache.org/lucene-hadoop/Hbase/ThriftApi

------------------------------------------------------------------------------
  
  ==== mutation ====
  
- Used when performing batch update operations.
+ Used when performing batch update operations. isDelete is the switch you flip 
when you want to delete a cell. 
  
  {{{
  struct mutation {
@@ -89, +89 @@

  }}}
  
  ==== Delete Row ====
- Delete an entire row. 
+ Delete an entire row.
+ 
+ {{{
+ void deleteRow(string tableName, string row),
+ void deleteRow(string tableName, string row, i64 timestamp)
+ }}}
  
  === Scanner methods ===
  
  ==== Open Scanner ====
  Create a scanner for a table with some options.
  
+ {{{
+ i32 openScanner(string tableName, string startRow),
+ i32 openScanner(string tableName, string startRow, string endRow),
+ i32 openScanner(string tableName, string startRow, string endRow, 
list<string> columns)
+ }}}
+ 
  ==== Get Scanner Results ====
  Retrieve one or more records from the scanner at once. 
+ 
+ {{{
+ map<string, string> getScannerResult(i32 scannerID)
+ }}}
  
  ==== Close Scanner ====
  Close a scanner.
  
+ {{{
+ void closeScanner(i32 scannerID)
+ }}}
+ 

Reply via email to