Package | Description |
---|---|
net.quasardb.qdb.ts |
Modifier and Type | Class and Description |
---|---|
class |
AutoFlushWriter
An implementation of a Writer that automatically flushes the local cache when
a certain threshold has been reached.
|
Modifier and Type | Method and Description |
---|---|
static Writer |
Table.asyncWriter(Session session,
String name)
Initializes new writer for a single timeseries table using
high-speed buffered writes.
|
static Writer |
Table.asyncWriter(Session session,
Table table)
Initializes new writer for a timeseries table using high-speed
buffered writes.
|
static Writer |
Tables.asyncWriter(Session session,
Table[] tables)
Initializes new writer for timeseries table using hgih-speed
buffered writes.
|
static Writer |
Tables.asyncWriter(Session session,
Tables tables)
Initializes new writer for timeseries table using high-speed
buffered writes.
|
static Writer |
Table.fastWriter(Session session,
String name)
Initializes new writer for a single table that makes use of
in-place updates rather than copy-on-write.
|
static Writer |
Table.fastWriter(Session session,
Table table)
Initializes new writer for a single table that makes use of
in-place updates rather than copy-on-write.
|
static Writer |
Tables.fastWriter(Session session,
Table[] tables)
Initializes new writer for timeseries tables that makes use of
in-place updates rather than copy-on-write.
|
static Writer |
Tables.fastWriter(Session session,
Tables tables)
Initializes new writer for timeseries tables that makes use of
in-place updates rather than copy-on-write.
|
static Writer |
Table.truncateWriter(Session session,
String name)
Initializes new writer for a single table that replaces any
existing data with the new data, rather than just adding.
|
static Writer |
Table.truncateWriter(Session session,
Table table)
Initializes new writer for a single table that replaces any
existing data with the new data, rather than just adding.
|
static Writer |
Tables.truncateWriter(Session session,
Table[] tables)
Initializes new writer for a single table that replaces any
existing data with the new data, rather than just adding.
|
static Writer |
Tables.truncateWriter(Session session,
Tables tables)
Initializes new writer for a single table that replaces any
existing data with the new data, rather than just adding.
|
static Writer |
Table.writer(Session session,
String name)
Initializes new writer for a single timeseries table.
|
static Writer |
Table.writer(Session session,
Table table)
Initializes new writer for a timeseries table.
|
static Writer |
Tables.writer(Session session,
Table[] tables)
Initializes new writer for timeseries table.
|
static Writer |
Tables.writer(Session session,
Tables tables)
Initializes new writer for timeseries table.
|
Copyright © 2021. All rights reserved.