Expand description
§kxkdb
The interface comprises two features:
- IPC: Connecting Rust and kdb+ processes via IPC
- API: Embedding Rust code inside kdb+ processes
Modules§
- api
- API
- ipc
- IPC
- qattribute
- This module provides a list of q attributes. The motivation to contain them in a module is to
tie them up as related items rather than scattered values. Hence user should use these
indicators with
qattribute::
prefix, e.g.,qattribute::UNIQUE
. - qinf_
base - This module provides a list of q null values. The motivation to contain them in a module is to
tie them up as related items rather than scattered values. Hence user should use these
indicators with
qnull::
prefix, e.g.,qinf_base::J
. - qninf_
base - This module provides a list of q null values. The motivation to contain them in a module is to
tie them up as related items rather than scattered values. Hence user should use these
indicators with
qnull::
prefix, e.g.,qninf_base::I
. - qnull_
base - This module provides a list of underlying null values of q objects. The motivation to contain
them in a module is to tie them up as related items rather than scattered values. Hence user
should use these indicators with
qnull::
prefix, e.g.,qnull_base::F
. - qtype
- This module provides a list of q types. The motivation to contain them in a module is to
tie them up as related items rather than scattered values. Hence user should use these
indicators with
qtype::
prefix, e.g.,qtype::BOOL_LIST
.
Macros§
- str_
to_ S - Convert
&str
toS
(null-terminated character array).