agisboye/SwiftLMDB
Simple & fast key value store in Swift
Features
- [x] Small and lightweight
- [x] Fast
- [x] Unit tested
- [x] Xcode documentation
- [x] Cross platform
SwiftLMDB has been tested on iOS and macOS, however it should also run on Linux. Feel free to test it out.
Requirements
- iOS 8.0+ or macOS 10.10+
- Swift 5.7+
Installation
Swift Package Manager
Add SwiftLMDB as a dependency in your Package.swift file.
dependencies: [
.package(url: "https://github.com/agisboye/SwiftLMDB.git", from: "2.0.0")
]Carthage
To integrate LMDB into your Xcode project using Carthage, specify it in your Cartfile:
github "agisboye/SwiftLMDB"Run carthage update to build the framework and drag SwiftLMDB.framework into your Xcode project.
Usage
Start by importing the module.
import SwiftLMDBCreating a database
Databases are contained within an environment. An environment may contain multiple databases, each identified by their name.
let environment: Environment
let database: Database
do {
// The folder in which the environment is opened must already exist.
try FileManager.default.createDirectory(at: envURL, withIntermediateDirectories: true, attributes: nil)
environment = try Environment(path: envURL.path, flags: [], maxDBs: 32)
database = try environment.openDatabase(named: "db1", flags: [.create])
} catch {
print(error)
}
Put a value
Any value conforming to DataConvertible can be inserted with any key conforming to DataConvertible.
try database.put(value: "Hello world!", forKey: "key1")Get a value
When you need to get back a value from the database, you specify the expected type (the type of the value you put in) and the key. This returns an optional of the type that you specify.
if let value = try database.get(type: String.self, forKey: "key1") { // String?
// String
}Delete a value
try database.deleteValue(forKey: "key1")Check if a key exists
try database.exists(key: "key1") // BoolEmpty
Removes all entries from the database.
try database.empty()
database.count == 0 // trueDrop
Removes all entries from the database and deletes the database from the environment. The database can no longer be used after calling this method and should be discarded.
try database.drop()Cursor
Database conforms to the Sequence protocol, so you can iterate over all (key, value) pairs in the database.
for (k, v) in database {
let key = String(data: k)!
let value = String(data: v)!
}Contributing
Contributions are very welcome. Open an issue or submit a pull request.
License
SwiftLMDB is available under the MIT license. See the LICENSE file for more info. LMDB is licensed under the OpenLDAP Public License.
Package Metadata
Repository: agisboye/SwiftLMDB
Stars: 118
Forks: 21
Open issues: 1
Default branch: master
Primary language: swift
License: MIT
README: README.md