torwig opened a new pull request, #1405: URL: https://github.com/apache/incubator-kvrocks/pull/1405
Currently, Redis Stream has 3 strategies to form the new entry's ID (provided with the XADD command): - autogenerated: the `*` pattern - fully specified by the client: the `12345-6789` pattern - only the sequence number is auto-generated, and the timestamp is specified by the client: the `12345-*` pattern. This PR introduces an additional pattern `*-12345` when a client is able to specify a sequence number and a timestamp will be generated by the Kvrocks server. The new pattern allows clients to use their internal IDs as part of an entry ID. Kvrocks generates timestamps and order incoming entries by the receiving time. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
