-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from kubukoz/ping
Add ConnectionCommands with `ping`
- Loading branch information
Showing
8 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
effects/src/main/scala/com/github/gvolpe/fs2redis/algebra/connection.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright 2018-2019 Fs2 Redis | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.github.gvolpe.fs2redis.algebra | ||
|
||
trait ConnectionCommands[F[_]] extends Ping[F] | ||
|
||
trait Ping[F[_]] { | ||
def ping: F[String] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
layout: docs | ||
title: "Connection" | ||
number: 11 | ||
--- | ||
|
||
# Connection API | ||
|
||
Purely functional interface for the [Connection API](https://redis.io/commands#connection). | ||
|
||
```tut:book:invisible | ||
import cats.effect.{IO, Resource} | ||
import cats.syntax.all._ | ||
import com.github.gvolpe.fs2redis.algebra.ConnectionCommands | ||
import com.github.gvolpe.fs2redis.interpreter.Fs2Redis | ||
import scala.concurrent.ExecutionContext | ||
implicit val cs = IO.contextShift(ExecutionContext.global) | ||
val commandsApi: Resource[IO, ConnectionCommands[IO]] = { | ||
Fs2Redis[IO, String, String](null, null, null).widen[ConnectionCommands[IO]] | ||
} | ||
``` | ||
|
||
### Connection Commands usage | ||
|
||
Once you have acquired a connection you can start using it: | ||
|
||
```tut:book:silent | ||
import cats.effect.IO | ||
import cats.syntax.all._ | ||
def putStrLn(str: String): IO[Unit] = IO(println(str)) | ||
commandsApi.use { cmd => // ConnectionCommands[IO] | ||
for { | ||
pong <- cmd.ping | ||
_ <- putStrLn(pong) //"pong" | ||
} yield () | ||
} | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters