@@ -255,6 +255,7 @@ default BoundHashFieldExpirationOperations<HK> hashExpiration(@NonNull Collectio
255255 * @param hashFields must not be {@literal null}.
256256 * @return {@literal null} when used in pipeline / transaction.
257257 * @since 4.0
258+ * @see <a href="https://redis.io/commands/hgetdel">Redis Documentation: HGETDEL</a>
258259 */
259260 List <HV > getAndDelete (@ NonNull Collection <@ NonNull HK > hashFields );
260261
@@ -266,6 +267,7 @@ default BoundHashFieldExpirationOperations<HK> hashExpiration(@NonNull Collectio
266267 * @param hashFields must not be {@literal null}.
267268 * @return never {@literal null}.
268269 * @since 4.0
270+ * @see <a href="https://redis.io/commands/hsetex">Redis Documentation: HSETEX</a>
269271 */
270272 List <HV > getAndExpire (Expiration expiration , @ NonNull Collection <@ NonNull HK > hashFields );
271273
@@ -275,11 +277,12 @@ default BoundHashFieldExpirationOperations<HK> hashExpiration(@NonNull Collectio
275277 *
276278 * @param m must not be {@literal null}.
277279 * @param condition is optional. Use {@link RedisHashCommands.HashFieldSetOption#IF_NONE_EXIST} (FNX) to only set the fields if
278- * none of them already exist, {@link RedisHashCommands.HashFieldSetOption#IF_ALL_EXIST} (FXX) to only set the
279- * fields if all of them already exist, or {@link RedisHashCommands.HashFieldSetOption#UPSERT} to set the fields
280- * unconditionally.
280+ * none of them already exist, {@link RedisHashCommands.HashFieldSetOption#IF_ALL_EXIST} (FXX) to only set the
281+ * fields if all of them already exist, or {@link RedisHashCommands.HashFieldSetOption#UPSERT} to set the fields
282+ * unconditionally.
281283 * @param expiration is optional.
282284 * @since 4.0
285+ * @see <a href="https://redis.io/commands/hsetex">Redis Documentation: HSETEX</a>
283286 */
284287 void putAndExpire (Map <? extends @ NonNull HK , ? extends HV > m , RedisHashCommands .HashFieldSetOption condition , Expiration expiration );
285288}
0 commit comments