47
47
*
48
48
* @author Christoph Strobl
49
49
* @author Mark Paluch
50
+ * @author Marcin Grzejszczak
50
51
* @since 2.0
51
52
*/
52
53
public interface ReactiveStringCommands {
@@ -62,15 +63,23 @@ class SetCommand extends KeyCommand {
62
63
private @ Nullable ByteBuffer value ;
63
64
private Expiration expiration ;
64
65
private SetOption option ;
66
+ private boolean get ;
65
67
66
68
private SetCommand (ByteBuffer key , @ Nullable ByteBuffer value , @ Nullable Expiration expiration ,
67
69
@ Nullable SetOption option ) {
68
70
71
+ this (key , value , expiration , option , false );
72
+ }
73
+
74
+ private SetCommand (ByteBuffer key , @ Nullable ByteBuffer value , @ Nullable Expiration expiration ,
75
+ @ Nullable SetOption option , boolean get ) {
76
+
69
77
super (key );
70
78
71
79
this .value = value ;
72
80
this .expiration = expiration ;
73
81
this .option = option ;
82
+ this .get = get ;
74
83
}
75
84
76
85
/**
@@ -125,6 +134,16 @@ public SetCommand withSetOption(SetOption option) {
125
134
return new SetCommand (getKey (), value , expiration , option );
126
135
}
127
136
137
+ /**
138
+ * Applies GET option. Return the old string stored at key, or {@code null} if key did not exist.
139
+ * An error is returned and SET aborted if the value stored at key is not a string.
140
+ *
141
+ * @return a new {@link SetCommand} with {@link SetOption} applied.
142
+ */
143
+ public SetCommand withGet () {
144
+ return new SetCommand (getKey (), value , expiration , option , true );
145
+ }
146
+
128
147
/**
129
148
* @return
130
149
*/
@@ -146,6 +165,13 @@ public Optional<Expiration> getExpiration() {
146
165
public Optional <SetOption > getOption () {
147
166
return Optional .ofNullable (option );
148
167
}
168
+
169
+ /**
170
+ * @return
171
+ */
172
+ public boolean isGet () {
173
+ return get ;
174
+ }
149
175
}
150
176
151
177
/**
@@ -184,6 +210,22 @@ default Mono<Boolean> set(ByteBuffer key, ByteBuffer value, Expiration expiratio
184
210
.map (BooleanResponse ::getOutput );
185
211
}
186
212
213
+ /**
214
+ * Set {@literal value} for {@literal key} with {@literal expiration} and {@literal options}. Return the old
215
+ * string stored at key, or nil if key did not exist. An error is returned and SET aborted if the value
216
+ * stored at key is not a string.
217
+ *
218
+ * @param key must not be {@literal null}.
219
+ * @param value must not be {@literal null}.
220
+ * @param expiration must not be {@literal null}. Use {@link Expiration#persistent()} for no expiration time or
221
+ * {@link Expiration#keepTtl()} to keep the existing.
222
+ * @param option must not be {@literal null}.
223
+ * @return
224
+ * @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
225
+ * @since 3.4
226
+ */
227
+ Flux <ByteBufferResponse <SetCommand >> setGet (ByteBuffer key , ByteBuffer value , Expiration expiration , SetOption option );
228
+
187
229
/**
188
230
* Set each and every item separately by invoking {@link SetCommand}.
189
231
*
0 commit comments