monorepo/emseries
savanni e60a2fbc30 Start building a music player server (#17)
The very beginnings, with a very basic application architecture, for a music playing server on a headless system.

This also adds my new Flow library, which I'll be wanting to use in a variety of places.

Co-authored-by: Savanni D'Gerinel <savanni@luminescent-dreams.com>
Reviewed-on: savanni/tools#17
2023-02-11 17:59:15 +00:00
..
fixtures Re-extract emseries into its own project 2022-04-20 09:01:39 -04:00
src Start building a music player server (#17) 2023-02-11 17:59:15 +00:00
tests Start building a music player server (#17) 2023-02-11 17:59:15 +00:00
Cargo.lock Update to chrono_tz 0.6 2022-04-21 09:25:39 -04:00
Cargo.toml Start building a music player server (#17) 2023-02-11 17:59:15 +00:00
Makefile Set up build tools for emseries 2022-12-31 12:25:49 -05:00
readme.md Re-extract emseries into its own project 2022-04-20 09:01:39 -04:00

readme.md

EmSeries

CircleCI

EmSeries is an Embedded Time Series database. It is designed for small-scale applications which need to track time series data, but on a scale that does not justify extra database services. I use it for Fitnesstrax, which keeps track of my workout and biometric information, recorded only a few times a day.

Documentation: emseries - Rust

Features

  • Open a time series file directly in your application
  • Add, update, read, and delete records with arbitrary json-friendly structure
  • Search for records by timestamp and optional tags

Future Plans

  • Indexing based on time and tags
  • Support databases larger than memory
  • Multi-process safety

The actual extent of the features implemened will depend on how I and any others decide to use them.

Contributors