You can use the following commands to check your data stored in Redis.
NOTE: The following commands must be run from the CLI tool within Redis.
-
Listing subscription IDs for an event source (or host):
127.0.0.1:6379> HKEYS win1 1) "FE14EC9A-A667-5375-B0B5-C4C4A9A6F745"
The command lists the available subscriptions (in this case, FE14EC9A-A667-5375-B0B5-C4C4A9A6F745 is the only one available) for the event source or host (in this case, win1).
-
Getting bookmarks for a subscription ID:
127.0.0.1:6379> HGET win1 FE14EC9A-A667-5375-B0B5-C4C4A9A6F745 "<BookmarkList><Bookmark Channel=\"Application\" RecordId=\"11098\" IsCurrent=\"true\"/></BookmarkList>"
The command lists the bookmark value (RecordId=\"11098\") from the FE14EC9A-A667-5375-B0B5-C4C4A9A6F745 subscription ID within the win1 event source.