Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marvin-hansen/quasar-rs
Rust binding for quasar.ai DB
https://github.com/marvin-hansen/quasar-rs
Last synced: 3 months ago
JSON representation
Rust binding for quasar.ai DB
- Host: GitHub
- URL: https://github.com/marvin-hansen/quasar-rs
- Owner: marvin-hansen
- License: mit
- Created: 2023-10-19T03:36:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-09T00:44:31.000Z (11 months ago)
- Last Synced: 2024-02-09T02:13:07.734Z (11 months ago)
- Language: C
- Homepage:
- Size: 22.2 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quasar.rs Rust binding for quasar.ai DB
Requires the quasar C API & libraries.
## Status: Broken
Reason: On Macos: dylib not found during linker stage
exporting these doesn't work at all; not sure why.
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/Users/marvin/CLionProjects/quasar-rs/qdb/lib
export DYLD_FALLBACK_LIBRARY_PATH=DYLD_FALLBACK_LIBRARY_PATH:/Users/marvin/CLionProjects/quasar-rs/qdb/lib
## Start Quasar DB server via Docker
### On AMD/Intel
docker run -d --name qdb-server bureau14/qdb
### On Apple Silicon (M1/M2)
docker run --platform linux/amd64 -d --name qdb-server bureau14/qdb
### Start Quasar Shell and connect to the server
docker run --platform linux/amd64 -ti --link qdb-server:qdb-server bureau14/qdbsh --cluster qdb://qdb-server:2836