[][src]Module extremedb::runtime

eXtremeDB runtime management.

The eXtremeDB runtime must be explicitly started before any database operations can be done. The underlying implementation does not allow the runtime to be stopped and restarted; hence, dropping the Runtime object and starting it again will panic.

Examples

Starting a runtime with default options:

let runtime = Runtime::start(vec![]);
// Runtime is now started and can be used to create a database.

See the options module for more information on runtime options.

Modules

options

Runtime option definitions.

Structs

Info

Runtime information.

Runtime

Runtime interface.