Package | Description |
---|---|
com.bigdata.btree |
The
BTree is a scalable B+-Tree with copy-on-write
semantics mapping variable length unsigned byte[] keys to variable
length byte[] values (null values are allowed). |
com.bigdata.htree | |
com.bigdata.io | |
com.bigdata.io.compression | |
com.bigdata.rdf.model |
This package provides a tuned implementation of the Sesame RDF data model
for the RDF database.
|
Modifier and Type | Method and Description |
---|---|
ByteArrayBuffer |
TestTuple.getKeyBuffer() |
ByteArrayBuffer |
AbstractTuple.getKeyBuffer() |
ByteArrayBuffer |
DelegateTuple.getKeyBuffer() |
ByteArrayBuffer |
ITuple.getKeyBuffer()
The buffer into which the keys are being copied.
|
ByteArrayBuffer |
AbstractChunkedTupleIterator.ResultSetTuple.getKeyBuffer() |
ByteArrayBuffer |
TestTuple.getValueBuffer() |
ByteArrayBuffer |
AbstractTuple.getValueBuffer() |
ByteArrayBuffer |
DelegateTuple.getValueBuffer() |
ByteArrayBuffer |
ITuple.getValueBuffer()
The buffer into which the values are being copied.
|
ByteArrayBuffer |
AbstractChunkedTupleIterator.ResultSetTuple.getValueBuffer() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
AbstractBTree.encodeRecordAddr(ByteArrayBuffer recordAddrBuf,
long addr)
Encode a raw record address into a byte[] suitable for storing in the
value associated with a tuple and decoding using
AbstractBTree.decodeRecordAddr(byte[]) |
Modifier and Type | Method and Description |
---|---|
static byte[] |
AbstractHTree.encodeRecordAddr(ByteArrayBuffer recordAddrBuf,
long addr)
Encode a raw record address into a byte[] suitable for storing in the
value associated with a tuple and decoding using
AbstractHTree.decodeRecordAddr(byte[]) |
Modifier and Type | Class and Description |
---|---|
class |
DataOutputBuffer
Fast special purpose serialization onto a managed byte[] buffer conforming to
the
DataOutput API. |
Modifier and Type | Method and Description |
---|---|
ByteArrayBuffer |
ByteArrayBuffer.append(byte b) |
ByteArrayBuffer |
ByteArrayBuffer.append(byte[] b) |
ByteArrayBuffer |
ByteArrayBuffer.append(byte[] b,
int off,
int len) |
ByteArrayBuffer |
ByteArrayBuffer.reset()
Prepares the buffer for new data by resetting the position and limit to
zero.
|
Modifier and Type | Method and Description |
---|---|
int |
ByteArrayBuffer.copyAll(ByteArrayBuffer src)
Relative copy data from the origin (offset ZERO) of the
source buffer up to its read limit into this buffer.
|
int |
ByteArrayBuffer.copyRest(ByteArrayBuffer src)
Relative copy data from the current position of the
source buffer up to its read limit into this buffer.
|
void |
DataInputBuffer.setBuffer(ByteArrayBuffer buf)
|
Constructor and Description |
---|
DataInputBuffer(ByteArrayBuffer buf)
Prepare for reading from the buffer.
|
Modifier and Type | Method and Description |
---|---|
int |
UnicodeHelper.encode(String s,
OutputStream out,
ByteArrayBuffer tmp)
Encode the
String onto the OutputStream . |
Modifier and Type | Method and Description |
---|---|
byte[] |
BigdataValueSerializer.serialize(V val,
DataOutputBuffer out,
ByteArrayBuffer tmp)
Variant which permits reuse of the same buffer.
|
void |
BigdataValueSerializer.serialize2(V val,
DataOutputBuffer out,
ByteArrayBuffer tmp)
Variant which permits reuse of the same buffer and avoids copying the
data once it has been formated onto the caller's
DataOutputBuffer
(core impl). |
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.