Kuzu module

The top level namespace for Kuzu classes.

Constants

VERSION

Library version

Public Class Methods

database( path='', **config )

Create and return a Kuzu::Database. If path is nil, an empty string, or the Symbol :memory, creates an in-memory database. Valid options are:

:buffer_pool_size

Max size of the buffer pool in bytes.

:max_num_threads

The maximum number of threads to use during query execution.

:enable_compression

Whether or not to compress data on-disk for supported types

:read_only

If true, open the database in read-only mode. No write transaction is allowed on the Database object. If false, open the database read-write.

:max_db_size

The maximum size of the database in bytes.

:auto_checkpoint

If true, the database will automatically checkpoint when the size of the WAL file exceeds the checkpoint threshold.

:checkpoint_threshold

The threshold of the WAL file size in bytes. When the size of the WAL file exceeds this threshold, the database will checkpoint if auto_checkpoint is true.

# File lib/kuzu.rb, line 51
def self::database( path='', **config )
        path = '' if path.nil? || path == :memory
        return Kuzu::Database.new( path.to_s, **config )
end
kuzu_version → string

Return the version of the underlying Kuzu library.

static VALUE
rkuzu_s_kuzu_version( VALUE _ )
{
        const char *version = kuzu_get_version();

        return rb_str_new2( version );
}
storage_version → integer

Return the storage version used by the underlying library.

static VALUE
rkuzu_s_storage_version( VALUE _ )
{
        const unsigned long long version = kuzu_get_storage_version();

        return ULONG2NUM( version );
}