Database
kerneldb.txt
Associated article: Kernel-Mode Databases
Tags: Database Parallel Embedded Systems Design
Published source code accompanying the article by Andrei Gorine and Alexander Krivolapov in which they explain what a kernel-mode database is and how it can be used for high-performance applications.
Kernel-Mode Databases
by Andrei Gorine and Alexander Krivolapov
Example 1: Database schema.
struct ACL
{
uint4 uid; // user id
uint4 access; // access allowed for some user id
};
class File
{
char<100> name; // file name
uint4 inode; // file inode
uint4 device; // device
...


