Redis 8.4 is currently in preview and may be subject to change.
New features in Redis 8.4 include:
MSETEXfor setting multiple strings with expiryXREADGROUP ... CLAIMfor simplifed stream consumptionSET ... {IFEQ|IFNE|IFDEQ|IFDNE},DELEXandDIGESTfor checked (CAS/CAD) string operations
The corresponding library feature must also be considered subject to change:
- Existing bindings may cease working correctly if the underlying server API changes.
- Changes to the server API may require changes to the library API, manifesting in either/both of build-time or run-time breaks.
While this seems unlikely, it must be considered a possibility. If you acknowledge this, you can suppress
this warning by adding the following to your csproj file:
<NoWarn>$(NoWarn);SER002</NoWarn>
or more granularly / locally in C#:
#pragma warning disable SER002