-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add storage queues #749
base: main
Are you sure you want to change the base?
Add storage queues #749
Conversation
@@ -32,7 +32,7 @@ export class DirectConnection implements DirectConnectionInterface { | |||
|
|||
transaction(this.document) | |||
|
|||
await this.instance.storeDocumentHooks(this.document, { | |||
await this.instance.onStoreDocument(this.document, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This means that DirectConnection
saves will be debounced too, we can disable this by passing true
as the final arg but I feel like this should be preferable if your debounce is for rate-limit reasons?
Is there a reason it wasn't part of the throttle previously?
@janthurau would love to get your thoughts on this. |
Thanks a lot for your PR! I've been thinking about this for some time, as I currently don't really see this fit in the Hocuspocus core, but as an extension. Having multiple different storage services where you need to debounce them separately sounds like a rather unique use case. I haven't checked it now, but do you think this is possible to implement using an extension? You can probably either set debounce to 0 and then implement your own logic in onStoreDocument, or don't implement the hook at all and use a custom onChange hook? 🤔 |
@janthurau its of course possible to implement as an extension but it requires opting out of a large portion of the core and reimplementing a lot of the same concepts manually and loses the separation of I imagine I'm not the only person who stores both CRDT and JSON snapshots of their data. It is not just about the different debounce rates. Currently if an earlier It's a completely opt-in API, nothing changes if you don't use it but if you do want to store to multiple locations this gives you much greater control. I understand where you're coming from but I think there's a lot of value in being able to support multiple storage locations better within the elegant HocusPocus extension API. I would be open to altering the API to better fit your style, I just couldn't think of a neater way of describing it at the time. I thought about adding the per debounce settings to the extension level but "storage queues" have a one to many extension relationship. |
We store the document in multiple ways, we store the CRDT data in one location and a JSON snapshot in another.
We have different throttle requirements for each as one of our stores is rate-limited and the other isn't. Also we don't want one type of storage failing to skip the other.
So to combat this I've added the concept of separate storage queues. Nothing changes by default, but you can optionally assign a storage queue to an extension:
And configure that storage queue to debounce separately at the top level:
Now the
onStoreDocument
at the top level and in your extension run in two separate hook chains at their own throttled rate.Multiple extensions can share the same storage queue by using the same string identifier. These will be chained off each other like usual.