Back to Stackexchange Redis

SER003

docs/exp/SER003.md

2.12.14828 B
Original Source

Redis 8.6 is currently in preview and may be subject to change.

New features in Redis 8.6 include:

  • HOTKEYS for profiling CPU and network hot-spots by key
  • XADD IDMP[AUTP] for idempotent (write-at-most-once) stream addition

The corresponding library feature must also be considered subject to change:

  1. Existing bindings may cease working correctly if the underlying server API changes.
  2. 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:

xml
<NoWarn>$(NoWarn);SER003</NoWarn>

or more granularly / locally in C#:

c#
#pragma warning disable SER003