# originium **Repository Path**: sharpglasses/originium ## Basic Information - **Project Name**: originium - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-03 - **Last Updated**: 2025-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![ORIGINIUM](./images/ORIGINIUM.png) LSM-Tree based storage engine used by FOIVER system. ## Install ```shell go get -u github.com/B1NARY-GR0UP/originium ``` ## Usage - **Open** ```go // use originium.Config to customize the db behavior db, err := originium.Open("your-dir", originium.DefaultConfig) ``` - **Set** ```go db.Set("hello", []byte("originium")) ``` - **Get** ```go v, ok := db.Get("hello") ``` - **Scan** ```go entries := db.Scan("start", "end") ``` - **Delete** ```go db.Delete("hello") ``` - **Close** ```go db.Close() ``` ## License ORIGINIUM is distributed under the [Apache License 2.0](./LICENSE). The licenses of third party dependencies of ORIGINIUM are explained [here](./licenses). ## ECOLOGY

PROJECT: FOIVER

ORIGINIUM is Part of PROJECT: FOIVER