Skip to content

Commit

Permalink
Update subscription.mdx (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
WanYixian authored Jan 16, 2025
1 parent e385cd6 commit f711b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serve/subscription.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ALTER SUBSCRIPTION <subscription_name>

A subscription cursor is a unit used to consume data from a subscription. In RisingWave, it’s a tool specifically designed to work in conjunction with a subscription, differing from the general cursor.

In RisingWave, the subscription cursor allows you to specify a specific starting point within the data of the subscription. Once the subscription cursor is created, you can use a loop to fetch and consume the data starting from that point onwards. A subscription can have multiple subscription cursors, which can be used to consume different ranges or intervals of data from the subscription.
In RisingWave, the subscription cursor allows you to specify a specific starting point within the subscription data. After creating the subscription cursor, you can use a loop to fetch and consume data starting from that point onwards. Results returned by the cursor are sorted by primary key. A subscription can have multiple subscription cursors, each consuming different ranges or intervals of data from the subscription.

### Syntax[](#syntax "Direct link to Syntax")

Expand Down

0 comments on commit f711b12

Please sign in to comment.