Code Monkey home page Code Monkey logo

zdb's Introduction

zdb

Allocator-free document oriented database management, heavily inspired by TinyDB.

Abstract

Warning
This library is still in development. Please use at your own expense.

zdb is inspired by TinyDB, meaning this library also utilises JSON files as its main storage. zdb is also designed and meant to go hand-in-hand with zorm, interoperable with one another.

Structure

The architecture of this database design has been shrinked for maximising efficiency and optimisation strategies.

Here's a mockup example for a lack of better words:

Database {
    Table {
        Item {
            T (type)
            v (T) -> undefined
        }

        size (u64) -> undefined
        items (array of Item)

        search(T or expr)
        add(T or expr)
        remove(T or expr)
        clear(?T)
    }

    tables (array of Table) -> undefined
}

Query {
    where(expr) !Item
    exists(T) !bool
}

Caviats

Simplicity and ease-of-use are the primary goals of zdb. You may not want to use this if:

  • You need the database cached during realtime
  • Are seeking to use your own alloc for memory allocation
  • Needing to hook in-between transactions with middleware

Building

zdb runs on 0.11.0-dev and higher versions of Zig.

It is recommended to install and build from source:

$ git clone --recursive https://github.com/ziglibs/zdb
$ cd ./zdb
$ zig build

zdb's People

Contributors

i0bs avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.