Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iondbproject/iondb
IonDB, a key-value datastore for resource constrained systems.
https://github.com/iondbproject/iondb
Last synced: 3 months ago
JSON representation
IonDB, a key-value datastore for resource constrained systems.
- Host: GitHub
- URL: https://github.com/iondbproject/iondb
- Owner: iondbproject
- License: bsd-3-clause
- Created: 2015-02-26T00:07:10.000Z (over 9 years ago)
- Default Branch: development
- Last Pushed: 2024-06-03T18:56:02.000Z (5 months ago)
- Last Synced: 2024-06-21T18:10:50.210Z (5 months ago)
- Language: C
- Homepage:
- Size: 5.12 MB
- Stars: 587
- Watchers: 50
- Forks: 48
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Authors: AUTHORS.md
Awesome Lists containing this project
- awesome-data-engineering - IonDB - A key-value store for microcontroller and IoT applications. (Databases)
README
![IonDB](https://cdn.rawgit.com/iondbproject/iondb/master/documentation/doxygen/iondb_logo_final.svg)
=========IonDB is no longer under active development. It is replaced by [EmbedDB](https://github.com/ubco-db/EmbedDB) that provides efficient time series, key-value, and relational data processing for Arduinos and embedded devices.
# "What is this?"
Currently in the Arduino world, there doesn't exist an associative array or map implementation that is both easy to use *and* performance competitive. There also is little support for disk based storage options that don't involve writing it yourself. IonDB is fast, functional, and offers disk based storage out of the box.
In general, IonDB supports:
* Storing arbitrary values associated to a key
* Duplicate key support
* Range and Equality queries
* Disk based persistent data storageIonDB has a paper that was published at IEEE (CCECE) 2015, which can be found [here.](http://ieeexplore.ieee.org/xpl/articleDetails.jsp?reload=true&tp=&arnumber=7129178)
# Code Examples
Check out [this example file](examples/BasicUsage/BasicUsage.ino) for code examples on how to use IonDB.
# Further Reading
User focused information pages can be found on our [wiki](https://github.com/iondbproject/iondb/wiki).
# License
IonDB is licensed under the BSD-Clause 3 License. For more information, please refer to [the license file](LICENSE.md).