product-os-store

Crates.ioproduct-os-store
lib.rsproduct-os-store
version0.0.25
sourcesrc
created_at2023-08-20 09:00:26.823514
updated_at2024-10-27 08:48:11.07198
descriptionProduct OS : Store provides a flexible and higher-level framework for defining storage engines / database engines and the actions to read and write to those storage engines / databases. This crate leverages a number of existing crates to achieve this. Support currently for key-value, queue and relational databases. Popular databases supported include Redis and PostgreSQL at this time. You should use Product OS : Store Macros with this crate for best results.
homepage
repository
max_upload_size
id949282
size460,860
Jeremy (eremyjay)

documentation

README

Product OS : Store

Product OS : Store provides a flexible and higher-level framework for defining storage engines / database engines and the actions to read and write to those storage engines / databases.

This crate leverages a number of existing crates to achieve this. Support currently for key-value, queue and relational databases. Popular databases supported include Redis and PostgreSQL at this time.

You should use Product OS : Store Macros with this crate for best results.

What is Product OS?

Product OS is a collection of packages that provide different tools and features that can work together to build products more easily for the Rust ecosystem.

Installation

Use the Rust crate package manager cargo to install Product OS : Store.

cargo add product-os-store

or add Product OS : Store to your cargo.toml [packages] section.

product-os-store = { version = "0.0.25", features = [], default-features = true, optional = false }

Features

Product OS Store supports a number of features leveraging existing Rust libraries such as sqlx and redis as follows:

  • Higher level interface for handling storage reads and writes
  • Support for key-value, queue and relational databases
  • Supports Redis, PostgreSQL and Sqlite at this time
  • Entire abstraction of data to allow for high level definitions of SQL queries using macros with Product OS : Store Macros
  • Scalable support for future document and event stores (yet to implement)
// Feature samples TODO

Usage

// Examples TODO

Contributing

Contributions are not currently available but will be available on a public repository soon.

License

GNU AGPLv3

Commit count: 0

cargo fmt