Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kygost/freds

Flexible Referencing Extensible Data Store
https://github.com/kygost/freds

object rust storage

Last synced: 13 days ago
JSON representation

Flexible Referencing Extensible Data Store

Awesome Lists containing this project

README

        

# FREDS
**F**lexible **R**eferencing **E**xtensible **D**ata **S**tore

## Two Kinds

### Sized
64b/8B
Inline for Unsized

#### Common
- u64
- i64
- f64

### Unsized

#### Common
- Map
- Array
- String

#### Made of
- (Type)
- Reference
- Size
- Data

## Allows
- Partial Read
- Partial Write
- Custom Types

## Format

### File
```
- TYPE:SIZE
- SIZE
- DATA (eg. TYPE:DATA)
```

### Rust
```
All: [Vec>; 256]
```