hummingbird-redis

1.0.0

Hummingbird integration with Redis driver RediStack
hummingbird-project/hummingbird-redis

What's New

v1.0.0

2023-02-08T16:30:08Z

Hummingbird interface to RediStack the Swift client for Redis.
Also includes implementations of the persist storage and jobs frameworks from Hummingbird.

Hummingbird Redis Interface

Redis is an open source, in-memory data structure store, used as a database, cache, and message broker.

This is the Hummingbird interface to RediStack library a Swift driver for Redis.

Usage

let app = HBApplication()
try app.addRedis(configuration: .init(hostname: "localhost", port: 6379))
app.router.get("redis") { request in
    request.redis.send(command: "INFO").map {
        $0.description
    }
}
app.start()

Description

  • Swift Tools 5.5.0
View More Packages from this Author

Dependencies

Last updated: Tue Mar 21 2023 09:52:44 GMT-0500 (GMT-05:00)