Package com.nhncorp.neptune.client

Neptune Client API, Shell, Scanner, Utility

See:
          Description

Interface Summary
AsyncDataReceiver NTable has a get() method which allows applications to asynchronously receive data.
 

Class Summary
Cell Neptune stores multiple values in a point of Row-Column.
Cell.Key Cell.Key class
Cell.Value Cell내에 저장되어 있는 실제 값.
CellFilter RowFilter and CellFilter are normally used to get or scan for complex search condition
DirectUploader DirectUploader is used to upload large data set.
NTable NTable represents a table in Neptune and each table contains data of applications with distributed and persistent manner.
Row Row is Value Object which represents Table's row.
Row.Key Row.Key class
RowFilter RowFilter and CellFilter are normally used to get or scan for complex search condition
NTable ntable = NTable.openTable(...); RowFilter rowFilter = new RowFilter(new Row.Key("rk1"), OP_LIKE); CellFilter cellFilter = new CellFilter("Column1"); cellFilter.setStartTimestamp(Long.MIN_VALUE); cellFilter.setEndTimestamp(Long.MAX_VALUE); rowFilter.addCellFilter(cellFilter); Row[] rows = ntable.gets(rowFilter);
ScanCell Value Object which is returned by TableScanner
 

Package com.nhncorp.neptune.client Description

Neptune Client API, Shell, Scanner, Utility