https://github.com/link89/wal-iot
A Python Write Ahead Log library for IoT and sensors to deal with unstable network.
https://github.com/link89/wal-iot
Last synced: over 1 year ago
JSON representation
A Python Write Ahead Log library for IoT and sensors to deal with unstable network.
- Host: GitHub
- URL: https://github.com/link89/wal-iot
- Owner: link89
- Created: 2024-11-12T16:46:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-13T17:40:39.000Z (over 1 year ago)
- Last Synced: 2025-01-16T15:14:04.964Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# wal-iot
A simple Write Ahead Log (WAL) implementation for IoT devices to deal with network failures or power outages.
## Introduction
Unlike the formal WAL designed for databases, this WAL is not designed for ensuring the atomicity of transactions.
Instead, it is designed to ensure that the data is not lost in case of network failures or power outages,
which are common in IoT or sensors networks.
## Installation
```bash
pip install wal-iot
```