Getting started
Sage is a native Redis and Valkey client for Scala 3. It implements the RESP3 protocol, commands, and codecs directly in Scala. Its core has no dependencies and is independent of any effect system.
Sage provides integrations for Ox, ZIO, Cats Effect, Kyo, and Apache Pekko. Each integration uses that ecosystem's native types. Sage targets RESP3 and modern Redis 8+ / Valkey 8+, runs on Scala 3.3.x LTS and later, and requires JDK 21+.
Installation
Add the artifact for your Scala stack. The core is pulled in transitively, so you depend on one module only.
"com.github.ghostdogpr" %% "sage-client-ox" % "0.3.1""com.github.ghostdogpr" %% "sage-client-zio" % "0.3.1""com.github.ghostdogpr" %% "sage-client-ce" % "0.3.1""com.github.ghostdogpr" %% "sage-client-kyo" % "0.3.1""com.github.ghostdogpr" %% "sage-client-pekko" % "0.3.1"Two imports cover everything: import sage.* for commands and connection config, and import sage.backend.* for the client. The imports are the same for every Scala stack; only the dependency changes.
Your first connection
A SageClient owns all connections to one server or cluster. You build it from a SageConfig using the usual pattern for your Scala stack: a scoped resource for Ox and Kyo, a ZLayer for ZIO, a Resource for Cats Effect, and a use block on Pekko that closes the client when your program finishes. The same commands are available in all five integrations; only the client setup differs.
import ox.supervised
import sage.*
import sage.backend.*
@main def main(): Unit =
supervised {
val config = SageConfig(
topology = Topology.Standalone(Endpoint("localhost", 6379))
)
val client = SageClient.scoped(config)
client.set("greeting", "hello")
val greeting = client.get[String]("greeting")
println(s"greeting=$greeting") // Some("hello")
}import zio.*
import sage.*
import sage.backend.*
object Main extends ZIOAppDefault {
val config = SageConfig(
topology = Topology.Standalone(Endpoint("localhost", 6379))
)
def run =
ZIO.serviceWithZIO[SageClient] { client =>
for {
_ <- client.set("greeting", "hello")
greeting <- client.get[String]("greeting")
} yield greeting
}.provide(SageClient.layer(config))
}import cats.effect.{IO, IOApp}
import sage.*
import sage.backend.*
object Main extends IOApp.Simple {
val config = SageConfig(
topology = Topology.Standalone(Endpoint("localhost", 6379))
)
def run: IO[Unit] =
SageClient.resource(config).use { client =>
for {
_ <- client.set("greeting", "hello")
greeting <- client.get[String]("greeting")
} yield ()
}
}import kyo.*
import sage.*
import sage.backend.*
object Main extends KyoApp {
val config = SageConfig(
topology = Topology.Standalone(Endpoint("localhost", 6379))
)
run {
Scope.run {
for {
client <- SageClient.scoped(config)
_ <- client.set("greeting", "hello")
greeting <- client.get[String]("greeting")
} yield greeting
}
}
}import org.apache.pekko.actor.typed.ActorSystem
import org.apache.pekko.actor.typed.scaladsl.Behaviors
import scala.concurrent.{ExecutionContext, Future}
import sage.*
import sage.backend.*
@main def main(): Unit = {
given system: ActorSystem[Nothing] = ActorSystem(Behaviors.empty, "sage")
given ExecutionContext = system.executionContext
val config = SageConfig(
topology = Topology.Standalone(Endpoint("localhost", 6379))
)
val done =
SageClient.use(config) { client =>
for {
_ <- client.set("greeting", "hello")
greeting <- client.get[String]("greeting")
} yield println(s"greeting=$greeting") // Some("hello")
}
done.onComplete(_ => system.terminate())
}How it works
Ordinary commands share one auto-pipelined connection per node. Sage can group concurrent commands into fewer network writes and returns each reply to the correct caller. You do not need to build a pipeline yourself.
Two kinds of work use other connections. Transactions and blocking commands (WATCH/MULTI/EXEC, BLPOP, and the like) temporarily borrow a dedicated connection from a pool. Pub/sub subscriptions use a separate subscription connection, created the first time you subscribe. This prevents a slow subscriber from delaying command replies.
A short tour
The snippets below show the same operations on each backend: pick your tab. In Ox they return values directly; on the other backends they are steps in a for-comprehension over that ecosystem's effect type (Future on Pekko, which means each for needs an ExecutionContext). All of them assume a client in scope and the usual imports for your effect type.
Commands
Method names match Redis commands and are grouped by family (strings, hashes, lists, sets, sorted sets, and so on). Keys and values are typed. The client uses String keys by default. For a read, specify the type of value you expect, as in get[String]. You can read and write your own types, such as the User below, by defining a ValueCodec for them.
client.set("greeting", "hello")
val greeting = client.get[String]("greeting") // Some("hello")
client.incrBy("counter", 10)
client.hSet("user:1", ("name", "Ada"), ("age", "36"))
val profile = client.hGetAll[String, String]("user:1")
// Map("name" -> "Ada", "age" -> "36")
client.set("user:ada", User("Ada", 36))
val ada = client.get[User]("user:ada") // Some(User("Ada", 36))for {
_ <- client.set("greeting", "hello")
greeting <- client.get[String]("greeting")
_ <- client.incrBy("counter", 10)
_ <- client.hSet("user:1", ("name", "Ada"), ("age", "36"))
profile <- client.hGetAll[String, String]("user:1")
_ <- client.set("user:ada", User("Ada", 36))
ada <- client.get[User]("user:ada")
} yield (greeting, profile, ada)See Commands & codecs for the full vocabulary and how to write a codec for your own types.
Pipelines and transactions
Compose commands into a pipeline to send them in one round-trip and get back a typed tuple of results:
client.set("pipe:a", "x")
client.set("pipe:n", 10)
val tuple = client.pipeline(
(
Commands.get[String, String]("pipe:a"),
Commands.incrBy("pipe:n", 5)
)
)for {
_ <- client.set("pipe:a", "x")
_ <- client.set("pipe:n", 10)
tuple <- client.pipeline(
(
Commands.get[String, String]("pipe:a"),
Commands.incrBy("pipe:n", 5)
)
)
} yield tupleA transaction runs a pipeline atomically via MULTI/EXEC, optionally guarded by WATCH for optimistic concurrency. If a watched key changes before EXEC, the transaction returns None and can be retried:
client.set("tx:n", 1)
val result = client.transaction { tx =>
tx.watch("tx:n")
tx.get[Int]("tx:n")
tx.exec(
(Commands.incr("tx:n"), Commands.incrBy("tx:n", 4))
)
}for {
_ <- client.set("tx:n", 1)
result <- client.transaction { tx =>
for {
_ <- tx.watch("tx:n")
_ <- tx.get[Int]("tx:n")
res <- tx.exec(
(
Commands.incr("tx:n"),
Commands.incrBy("tx:n", 4)
)
)
} yield res
}
} yield resultThe distinction is covered in Pipelines & transactions.
Pub/Sub
Subscribing yields a stream of messages in your ecosystem's native stream type: an Ox Flow, a ZIO ZStream, an fs2 Stream, a Kyo Stream, or a Pekko Streams Source. Ending the stream, or closing its scope, unsubscribes.
These examples publish immediately after subscribing, so they use the variant that waits for the server to confirm the subscription first. Pub/Sub explains when you need it.
val news = client.subscribeScoped[String]("news")
(1 to 3).foreach(i => client.publish("news", s"item-$i"))
val messages = news.take(3).runToList()ZIO.scoped {
for {
stream <- client.subscribeScoped[String]("news")
_ <- ZIO.foreachDiscard(1 to 3) { i =>
client.publish("news", s"item-$i")
}
messages <- stream.take(3).runCollect
} yield messages.map(_.payload).toList
}client.subscribeResource[String]("news").use { stream =>
for {
_ <- (1 to 3).toList.traverse_ { i =>
client.publish("news", s"item-$i")
}
messages <- stream.take(3).compile.toVector
} yield messages.map(_.payload).toList
}for {
stream <- client.subscribeScoped[String]("news")
_ <- Kyo.foreachDiscard(1 to 3) { i =>
client.publish("news", s"item-$i")
}
chunk <- stream.take(3).run
} yield chunk.toList.map(_.payload)// Keep.both gives both the confirmation Future[Done] and the collected messages
val (confirmed, collected) =
client.subscribe[String]("news").take(3).toMat(Sink.seq)(Keep.both).run()
val messages =
for {
_ <- confirmed
_ <- Future.traverse(1 to 3)(i => client.publish("news", s"item-$i"))
received <- collected
} yield received.map(_.payload).toListClassic and sharded pub/sub are both covered in Pub/Sub.
Cached reads
Opt a read into client-side caching per call. The first read fetches and caches; the second is served locally until a server invalidation or the TTL evicts it.
client.set("cached:key", "v1")
// first fetches and caches; second is a local hit
val v1 = client.cached(Commands.get[String, String]("cached:key"), 1.minute)
val v2 = client.cached(Commands.get[String, String]("cached:key"), 1.minute)for {
_ <- client.set("cached:key", "v1")
v1 <- client.cached(Commands.get[String, String]("cached:key"), 1.minute)
v2 <- client.cached(Commands.get[String, String]("cached:key"), 1.minute)
} yield (v1, v2)More in Client-side caching.
Next steps
- Commands & codecs for available commands and custom value types
- Pipelines & transactions for batching and atomicity
- Pub/Sub for classic and sharded messaging
- Streams for append-only logs and consumer groups
- Client-side caching for cached reads and invalidation
- Configuration for cluster, master-replica, read routing, and TLS
- Error handling and Observability