https://github.com/rqlite/rqlite-java-http
A minimal Java client for rqlite, useful on its own or as a foundation for higher-level packages
https://github.com/rqlite/rqlite-java-http
Last synced: 7 months ago
JSON representation
A minimal Java client for rqlite, useful on its own or as a foundation for higher-level packages
- Host: GitHub
- URL: https://github.com/rqlite/rqlite-java-http
- Owner: rqlite
- License: mit
- Created: 2025-03-21T03:03:25.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-05-09T12:46:54.000Z (8 months ago)
- Last Synced: 2025-05-20T00:38:45.252Z (8 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rqlite-java-http
A minimal Java client for rqlite, useful on its own or as a foundation for higher-level packages
This library offers support for:
- Executing SQL statements (`INSERT`, `UPDATE`, `DELETE`)
- Running queries (`SELECT`)
- Handling both read and write statements in a single request via the _Unified Endpoint_.
- Backing up and restoring data to your rqlite system
- Booting a rqlite node from a SQLite database file
- Checking node status, diagnostic info, cluster membership, and readiness
To see the client in action start a rqlite node reachable at http://localhost:4001 and run:
```bash
mvn compile
mvn exec:java
```