https://github.com/bobek-balinek/swift-lmdb-example
Quick experiment with LMDB and Kitura. Read/Write a key/value pair provided in the query params.
https://github.com/bobek-balinek/swift-lmdb-example
database lmdb server-side-swift swift
Last synced: 2 months ago
JSON representation
Quick experiment with LMDB and Kitura. Read/Write a key/value pair provided in the query params.
- Host: GitHub
- URL: https://github.com/bobek-balinek/swift-lmdb-example
- Owner: bobek-balinek
- License: mit
- Created: 2017-03-01T17:56:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-01T18:10:17.000Z (over 9 years ago)
- Last Synced: 2025-03-26T14:53:08.499Z (over 1 year ago)
- Topics: database, lmdb, server-side-swift, swift
- Language: Swift
- Size: 2.93 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Swift + LMDB Example
## Synopsis
This is the simplest project to test waters with Kitura, [IBM's](Kitura.io) Swift server project and [LMDB](http://www.lmdb.tech/doc/) a super-fast key/value store.
## Usage
Clone the repo and run `swift build` command from the project's directory. Swift Package Manager will clone all the dependencies and build an executable in `.build/debug` directory.
When done simply run `.build/debug/swift-lmdb-example`.
## Notes
This isn't a production-ready code, merely a proof of concept.