polodb_core 0.10.2

PoloDB is an embedded JSON-based database
Documentation

PoloDB is an embedded JSON-based database.

PoloDB is a library written in Rust that implements a lightweight MongoDB. PoloDB has no dependency(except for libc), so it can be easily run on most platform(thanks for Rust Language). The data of PoloDB is stored in a file. The file format is stable, cross-platform, and backwards compaitible. The API of PoloDB is very similar to MongoDB. It's very easy to learn and use.

Installation

[dependencies]
polodb_core = "0.10.2"
polodb_bson = "0.10.2"

Usage

The Database structure provides all the API to get access to the DB file.