-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC-4531 copied strings example from doctest branch
- Loading branch information
1 parent
3214c19
commit 60768b8
Showing
1 changed file
with
127 additions
and
0 deletions.
There are no files selected for viewing
127 changes: 127 additions & 0 deletions
127
src/test/java/io/redis/examples/async/StringExample.java
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,127 @@ | ||
// EXAMPLE: set_tutorial | ||
package io.redis.examples.async; | ||
|
||
import io.lettuce.core.*; | ||
import io.lettuce.core.api.async.RedisAsyncCommands; | ||
import io.lettuce.core.api.StatefulRedisConnection; | ||
|
||
// REMOVE_START | ||
import org.junit.jupiter.api.Test; | ||
// REMOVE_END | ||
|
||
import java.util.*; | ||
import java.util.concurrent.CompletableFuture; | ||
|
||
// REMOVE_START | ||
import static org.assertj.core.api.Assertions.assertThat; | ||
// REMOVE_END | ||
|
||
public class StringExample { | ||
|
||
// REMOVE_START | ||
@Test | ||
// REMOVE_END | ||
public void run() { | ||
RedisClient redisClient = RedisClient.create("redis://localhost:6379"); | ||
|
||
try (StatefulRedisConnection<String, String> connection = redisClient.connect()) { | ||
RedisAsyncCommands<String, String> asyncCommands = connection.async(); | ||
|
||
// STEP_START set_get | ||
CompletableFuture<Void> setAndGet = asyncCommands.set("bike:1", "Deimos").thenCompose(v -> { | ||
System.out.println(v); // OK | ||
// REMOVE_START | ||
assertThat(v).isEqualTo("OK"); | ||
// REMOVE_END | ||
return asyncCommands.get("bike:1"); | ||
}) | ||
// REMOVE_START | ||
.thenApply(res -> { | ||
assertThat(res).isEqualTo("Deimos"); | ||
return res; | ||
}) | ||
// REMOVE_END | ||
.thenAccept(System.out::println) // Deimos | ||
.toCompletableFuture(); | ||
// STEP_END | ||
|
||
// STEP_START setnx_xx | ||
CompletableFuture<Void> setnx = asyncCommands.setnx("bike:1", "bike").thenCompose(v -> { | ||
System.out.println(v); // false (because key already exists) | ||
// REMOVE_START | ||
assertThat(v).isFalse(); | ||
// REMOVE_END | ||
return asyncCommands.get("bike:1"); | ||
}) | ||
// REMOVE_START | ||
.thenApply(res -> { | ||
assertThat(res).isEqualTo("Deimos"); | ||
return res; | ||
}) | ||
// REMOVE_END | ||
.thenAccept(System.out::println) // Deimos (value is unchanged) | ||
.toCompletableFuture(); | ||
|
||
// set the value to "bike" if it already exists | ||
CompletableFuture<Void> setxx = asyncCommands.set("bike:1", "bike", SetArgs.Builder.xx()) | ||
// REMOVE_START | ||
.thenApply(res -> { | ||
assertThat(res).isEqualTo("OK"); | ||
return res; | ||
}) | ||
// REMOVE_END | ||
.thenAccept(System.out::println) // OK | ||
.toCompletableFuture(); | ||
// STEP_END | ||
|
||
// STEP_START mset | ||
Map<String, String> bikeMap = new HashMap<>(); | ||
bikeMap.put("bike:1", "Deimos"); | ||
bikeMap.put("bike:2", "Ares"); | ||
bikeMap.put("bike:3", "Vanth"); | ||
|
||
CompletableFuture<Void> mset = asyncCommands.mset(bikeMap).thenCompose(v -> { | ||
System.out.println(v); // OK | ||
return asyncCommands.mget("bike:1", "bike:2", "bike:3"); | ||
}) | ||
// REMOVE_START | ||
.thenApply(res -> { | ||
List<KeyValue<String, String>> expected = new ArrayList<>( | ||
Arrays.asList(KeyValue.just("bike:1", "Deimos"), KeyValue.just("bike:2", "Ares"), | ||
KeyValue.just("bike:3", "Vanth"))); | ||
assertThat(res).isEqualTo(expected); | ||
return res; | ||
}) | ||
// REMOVE_END | ||
.thenAccept(System.out::println) // [KeyValue[bike:1, Deimos], KeyValue[bike:2, Ares], KeyValue[bike:3, | ||
// Vanth]] | ||
.toCompletableFuture(); | ||
// STEP_END | ||
|
||
// STEP_START incr | ||
CompletableFuture<Void> incrby = asyncCommands.set("total_crashes", "0") | ||
.thenCompose(v -> asyncCommands.incr("total_crashes")).thenCompose(v -> { | ||
System.out.println(v); // 1 | ||
// REMOVE_START | ||
assertThat(v).isEqualTo(1L); | ||
// REMOVE_END | ||
return asyncCommands.incrby("total_crashes", 10); | ||
}) | ||
// REMOVE_START | ||
.thenApply(res -> { | ||
assertThat(res).isEqualTo(11L); | ||
return res; | ||
}) | ||
// REMOVE_END | ||
.thenAccept(System.out::println) // 11 | ||
.toCompletableFuture(); | ||
// STEP_END | ||
|
||
CompletableFuture.allOf(setAndGet, setnx, setxx, mset, incrby).join(); | ||
|
||
} finally { | ||
redisClient.shutdown(); | ||
} | ||
} | ||
|
||
} |